(key: unknown)
| 75 | toTypeString(val) === '[object Object]' |
| 76 | |
| 77 | export const isIntegerKey = (key: unknown): boolean => |
| 78 | isString(key) && |
| 79 | key !== 'NaN' && |
| 80 | key[0] !== '-' && |
| 81 | '' + parseInt(key, 10) === key |
| 82 | |
| 83 | export const isReservedProp: (key: string) => boolean = /*@__PURE__*/ makeMap( |
| 84 | // the leading comma is intentional so empty string "" is also included |
no test coverage detected