(v: any)
| 1 | export const isString = (v: any): v is string => typeof v === 'string' |
| 2 | export const isBoolean = (v: any): v is boolean => typeof v === 'boolean' |
| 3 | |
| 4 | type AnyFunction = (...args: any[]) => any |
| 5 | export const isFunction = (v: any): v is AnyFunction => typeof v === 'function' |
no outgoing calls
no test coverage detected