(nbytes: number)
| 435 | } |
| 436 | |
| 437 | private requestBytes(nbytes: number): void { |
| 438 | this.pendingBytes += nbytes; |
| 439 | } |
| 440 | |
| 441 | private readFromBuffer(nbytes: number): Uint8Array { |
| 442 | const ret = new Uint8Array(nbytes); |
no outgoing calls
no test coverage detected