(val: any)
| 43 | export const isFunction = (val: any): val is Function => |
| 44 | typeof val === 'function'; |
| 45 | export const isString = (val: any): val is string => typeof val === 'string'; |
| 46 | export const isNumber = (val: any): val is number => typeof val === 'number'; |
| 47 | export const isConstructor = (val: any): boolean => val === 'constructor'; |
| 48 | export const isNil = (val: any): val is null | undefined => |
no outgoing calls
no test coverage detected