(x: any)
| 8 | } |
| 9 | |
| 10 | function isPlainObject(x: any): x is Record<string, unknown> { |
| 11 | return typeof x === 'object' && x != null && !Array.isArray(x); |
| 12 | } |
| 13 | |
| 14 | function isArray(x: any) { |
| 15 | return Array.isArray(x); |
no outgoing calls
no test coverage detected