()
| 213 | } |
| 214 | |
| 215 | ensureBuffer() { |
| 216 | if (!this.currentIsBuffer) { |
| 217 | throw new Error( |
| 218 | this.currentBuffer === null |
| 219 | ? "Unexpected end of stream" |
| 220 | : "Unexpected lazy element in stream" |
| 221 | ); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Returns buffer with bytes. |