(value: any)
| 8 | export const isUndefined = (value: any) => typeof value === 'undefined'; |
| 9 | |
| 10 | export const isFunction = (value: any): value is Function => typeof value === 'function'; |
| 11 | |
| 12 | export const isObject = (val: any) => val !== null && !Array.isArray(val) && typeof val === 'object'; |
| 13 |