(datum)
| 6328 | return accumulator; |
| 6329 | } |
| 6330 | run(datum) { |
| 6331 | let accumulator = this.runGroup(datum, this.groups[0]); |
| 6332 | for(let i = 1; i < this.groups.length; i++){ |
| 6333 | let group = this.groups[i]; |
| 6334 | switch(group.clause){ |
| 6335 | case "&&": |
| 6336 | accumulator = accumulator && this.runGroup(datum, group); |
| 6337 | break; |
| 6338 | case "||": |
| 6339 | accumulator = accumulator || this.runGroup(datum, group); |
| 6340 | break; |
| 6341 | } |
| 6342 | } |
| 6343 | return accumulator; |
| 6344 | } |
| 6345 | } |
| 6346 | |
| 6347 | },{"./group":"1mCdR","@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"aV5tK":[function(require,module,exports) { |
no test coverage detected