(thing: unknown)
| 107 | getTypeOf(thing) == NUMBER; |
| 108 | |
| 109 | export const isFunction = (thing: unknown): thing is (...args: any[]) => any => |
| 110 | getTypeOf(thing) == FUNCTION; |
| 111 | |
| 112 | export const isArray = (thing: unknown): thing is unknown[] => |
| 113 | Array.isArray(thing); |
no test coverage detected
searching dependent graphs…