(str, separator = EMPTY_STRING, limit)
| 41 | var strStartsWith = (str, prefix) => str.startsWith(prefix); |
| 42 | var strEndsWith = (str, suffix) => str.endsWith(suffix); |
| 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 */ |
no outgoing calls
no test coverage detected
searching dependent graphs…