(value?: any)
| 6 | |
| 7 | /** @private is the value an empty array? */ |
| 8 | export const isEmptyArray = (value?: any) => |
| 9 | Array.isArray(value) && value.length === 0; |
| 10 | |
| 11 | /** @private is the given object a Function? */ |
| 12 | export const isFunction = (obj: any): obj is Function => |
no outgoing calls
no test coverage detected
searching dependent graphs…