(value: any)
| 5 | export const isFunction = (v: any): v is AnyFunction => typeof v === 'function' |
| 6 | |
| 7 | export function isObject(value: any): value is Record<string, any> { |
| 8 | return typeof value === 'object' && value != null && !Array.isArray(value) |
| 9 | } |
| 10 | |
| 11 | export const isSymbol = (v: any): v is symbol => typeof v === 'symbol' |
| 12 |
no outgoing calls
no test coverage detected