(thing: unknown)
| 104 | getTypeOf(thing) == STRING; |
| 105 | |
| 106 | export const isNumber = (thing: unknown): thing is number => |
| 107 | getTypeOf(thing) == NUMBER; |
| 108 | |
| 109 | export const isFunction = (thing: unknown): thing is (...args: any[]) => any => |
| 110 | getTypeOf(thing) == FUNCTION; |
no test coverage detected
searching dependent graphs…