(buffer: Uint8Array)
| 69 | readonly byteLength: number; |
| 70 | |
| 71 | private constructor(buffer: Uint8Array) { |
| 72 | this.buffer = buffer; |
| 73 | this.byteLength = this.buffer.byteLength; |
| 74 | } |
| 75 | |
| 76 | toString(): string { |
| 77 | if (hasBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected