(val: any)
| 49 | isUndefined(val) || val === null; |
| 50 | export const isEmpty = (array: any): boolean => !(array && array.length > 0); |
| 51 | export const isSymbol = (val: any): val is symbol => typeof val === 'symbol'; |
no outgoing calls
no test coverage detected