(fn)
| 44 | return this.start < index && index < this.end; |
| 45 | } |
| 46 | eachNext(fn) { |
| 47 | let chunk = this; |
| 48 | while (chunk) { |
| 49 | fn(chunk); |
| 50 | chunk = chunk.next; |
| 51 | } |
| 52 | } |
| 53 | eachPrevious(fn) { |
| 54 | let chunk = this; |
| 55 | while (chunk) { |
no outgoing calls
no test coverage detected