(value: unknown)
| 354 | } |
| 355 | |
| 356 | export function isPlainArray(value: unknown): value is Array<unknown> { |
| 357 | return Array.isArray(value) && value.length === Object.keys(value).length |
| 358 | } |
| 359 | |
| 360 | // Copied from: https://github.com/jonschlinkert/is-plain-object |
| 361 | export function isPlainObject(o: any): o is Record<PropertyKey, unknown> { |
no outgoing calls
no test coverage detected