(value: any)
| 5 | } |
| 6 | |
| 7 | export function isArray(value: any): value is Array<any> { |
| 8 | return Array.isArray(value); |
| 9 | } |
| 10 | |
| 11 | export function isString(value: any): value is string { |
| 12 | return typeof value === 'string'; |
no outgoing calls
no test coverage detected
searching dependent graphs…