(predicate)
| 43 | var strSplit = (str, separator = EMPTY_STRING, limit) => str.split(separator, limit); |
| 44 | var math = Math; |
| 45 | var getIfNotFunction = (predicate) => (value, then, otherwise) => predicate(value) ? ( |
| 46 | /* istanbul ignore next */ |
| 47 | otherwise?.() |
| 48 | ) : then(value); |
| 49 | var GLOBAL = globalThis; |
| 50 | var mathMax = math.max; |
| 51 | var mathMin = math.min; |
no outgoing calls
no test coverage detected
searching dependent graphs…