(predicate)
| 41 | var QUERY = "Query"; |
| 42 | var CHECKPOINT = "Checkpoint"; |
| 43 | var getIfNotFunction = (predicate) => (value, then, otherwise) => predicate(value) ? ( |
| 44 | /* istanbul ignore next */ |
| 45 | otherwise?.() |
| 46 | ) : then(value); |
| 47 | var GLOBAL = globalThis; |
| 48 | var isNullish = (thing) => thing == null; |
| 49 | var isUndefined = (thing) => thing === void 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…