(thing: unknown)
| 91 | export const isTrue = (thing: unknown): thing is true => thing === true; |
| 92 | |
| 93 | export const isFalse = (thing: unknown): thing is false => thing === false; |
| 94 | |
| 95 | export const ifNotNullish = getIfNotFunction(isNullish); |
| 96 |
no outgoing calls
no test coverage detected
searching dependent graphs…