Advances to the next data item (does not reset the position).
()
| 182 | |
| 183 | /** Advances to the next data item (does not reset the position). */ |
| 184 | nextDataItem() { |
| 185 | this.currentDataItem++; |
| 186 | this.currentBuffer = |
| 187 | this.currentDataItem < this.data.length |
| 188 | ? this.data[this.currentDataItem] |
| 189 | : null; |
| 190 | this.currentIsBuffer = Buffer.isBuffer(this.currentBuffer); |
| 191 | } |
| 192 | |
| 193 | checkOverflow() { |
| 194 | if ( |
no outgoing calls
no test coverage detected