(value: any)
| 9 | } |
| 10 | |
| 11 | export function isString(value: any): value is string { |
| 12 | return typeof value === 'string'; |
| 13 | } |
| 14 | |
| 15 | export function isBoolean(value: any): value is boolean { |
| 16 | return typeof value === 'boolean'; |
no outgoing calls
no test coverage detected
searching dependent graphs…