(value: unknown)
| 321 | } |
| 322 | |
| 323 | export function isPlainArray(value: unknown): value is Array<unknown> { |
| 324 | return Array.isArray(value) && value.length === Object.keys(value).length |
| 325 | } |
| 326 | |
| 327 | // Copied from: https://github.com/jonschlinkert/is-plain-object |
| 328 | export function isPlainObject(o: any): o is Record<PropertyKey, unknown> { |
no outgoing calls
no test coverage detected
searching dependent graphs…