()
| 262 | let contentPosition = 0; |
| 263 | if (contentItemLength === 0) throw new Error(`Empty file ${name}`); |
| 264 | const nextContent = () => { |
| 265 | contentsIndex++; |
| 266 | contentItem = contents[contentsIndex]; |
| 267 | contentItemLength = contentItem.length; |
| 268 | contentPosition = 0; |
| 269 | }; |
| 270 | /** |
| 271 | * Processes the provided n. |
| 272 | * @param {number} n number of bytes to ensure |
no outgoing calls
no test coverage detected