(v: any)
| 24 | * } |
| 25 | */ |
| 26 | export function isFunction<T>(v: any): v is T { |
| 27 | return typeof v === 'function'; |
| 28 | } |
| 29 | |
| 30 | export function isBoolean(v: any): v is boolean { |
| 31 | return typeof v === 'boolean'; |
no outgoing calls
no test coverage detected
searching dependent graphs…