(value: unknown)
| 10 | * A version of `Array.isArray` that handles narrowing of readonly arrays properly. |
| 11 | */ |
| 12 | export function isArray(value: unknown): value is any[] | readonly any[] { |
| 13 | return Array.isArray(value); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Checks if a value is an object. |
no test coverage detected
searching dependent graphs…