Skip to content

Commit 844f6a7

Browse files
Update buffers.md
1 parent 41e8579 commit 844f6a7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

docs/buffers.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ Big Endian stores the most significant byte at the lowest address, it is meant f
3939

4040
* The Buffer.getUint8(offset: number) method is designed to read an unsigned number in a particular location in the buffer
4141

42-
* The Buffer.write(dstOffset: number, src: Buffer) method is designed to write contents of the buffer merged into the current buffer (the buffer your using)
42+
* The Buffer.write(dstOffset: number, src: Buffer) method is designed to write contents of the buffer merged into the current buffer (the buffer your using)
43+
44+
* The Buffer.equals(other: Buffer) method checks if 2 buffers hold the same data
45+
46+
* The Buffer.chunk(maxSize: number): Buffer[] breaks the buffer into pieces, none exceeding the specified size.
4347

4448
* The Buffer.isReadOnly() method is designed to read if the buffer cannot be modified, otherwise it returns false
4549

0 commit comments

Comments
 (0)