(v: any)
| 4 | export const isNum = (v: any): v is Number => typeof v === 'number' && !isNaN(v); |
| 5 | |
| 6 | export const isStr = (v: any): v is String => typeof v === 'string'; |
| 7 | |
| 8 | export const isFn = (v: any): v is Function => typeof v === 'function'; |
| 9 |
no outgoing calls
no test coverage detected
searching dependent graphs…