(v: any)
| 28 | } |
| 29 | |
| 30 | export function isBoolean(v: any): v is boolean { |
| 31 | return typeof v === 'boolean'; |
| 32 | } |
| 33 | |
| 34 | export function isCanLoad(guard: any): guard is {canLoad: CanLoadFn} { |
| 35 | return guard && isFunction<CanLoadFn>(guard.canLoad); |
no outgoing calls
no test coverage detected
searching dependent graphs…