(s)
| 39289 | const Qo = _curry3(function pathSatisfies(s, o, i) { |
| 39290 | return s(_path(o, i)) |
| 39291 | }) |
| 39292 | function _cloneRegExp(s) { |
| 39293 | return new RegExp( |
| 39294 | s.source, |
| 39295 | s.flags |
| 39296 | ? s.flags |
| 39297 | : (s.global ? 'g' : '') + |
| 39298 | (s.ignoreCase ? 'i' : '') + |
| 39299 | (s.multiline ? 'm' : '') + |
| 39300 | (s.sticky ? 'y' : '') + |
| 39301 | (s.unicode ? 'u' : '') + |
| 39302 | (s.dotAll ? 's' : '') |
| 39303 | ) |
| 39304 | } |
| 39305 | function _arrayFromIterator(s) { |
| 39306 | for (var o, i = []; !(o = s.next()).done; ) i.push(o.value) |
no outgoing calls
no test coverage detected