(value: unknown)
| 339 | } |
| 340 | |
| 341 | export function isPlainArray(value: unknown): value is Array<unknown> { |
| 342 | return Array.isArray(value) && value.length === Object.keys(value).length |
| 343 | } |
| 344 | |
| 345 | // Copied from: https://github.com/jonschlinkert/is-plain-object |
| 346 | export function isPlainObject(o: any): o is Record<PropertyKey, unknown> { |
no outgoing calls
no test coverage detected