(thing)
| 296 | var isNull = (thing) => thing === null; |
| 297 | var isTrue = (thing) => thing === true; |
| 298 | var isFalse = (thing) => thing === false; |
| 299 | var ifNotNullish2 = getIfNotFunction2(isNullish2); |
| 300 | var ifNotUndefined2 = getIfNotFunction2(isUndefined2); |
| 301 | var isTypeStringOrBoolean = (type) => type == STRING2 || type == BOOLEAN; |
no outgoing calls
no test coverage detected
searching dependent graphs…