( type: string, )
| 97 | export const ifNotUndefined = getIfNotFunction(isUndefined); |
| 98 | |
| 99 | export const isTypeStringOrBoolean = ( |
| 100 | type: string, |
| 101 | ): type is 'string' | 'boolean' => type == STRING || type == BOOLEAN; |
| 102 | |
| 103 | export const isString = (thing: unknown): thing is string => |
| 104 | getTypeOf(thing) == STRING; |
no outgoing calls
no test coverage detected
searching dependent graphs…