We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd54d2 commit 7ae96d9Copy full SHA for 7ae96d9
binary_reader.ts
@@ -9,7 +9,8 @@ export class BinaryReader {
9
constructor(private buffer: Uint8Array) {}
10
11
/**
12
- *
+ * Rewinds the buffer/DataView byteOffset by numBytes bytes.
13
+ * @param numBytes The number of bytes to rewind.
14
*/
15
rewind(numBytes: number): void {
16
if (this.#position - numBytes < 0) {
0 commit comments