(value: any)
| 6 | export const isString = (val: any): val is string => typeof val === 'string'; |
| 7 | |
| 8 | export const isUndefined = (value: any) => typeof value === 'undefined'; |
| 9 | |
| 10 | export const isFunction = (value: any): value is Function => typeof value === 'function'; |
| 11 |
no outgoing calls
no test coverage detected