The Buffer.readBigUInt64BE() method is used to read unsigned 64 bit integer from a buffer object at a given offset and returns the result in Big… Read More
Tag Archives: Node.js-Buffer-module
The Buffer.alloc() method is used to create a new buffer object of the specified size. This method is slower than Buffer.allocUnsafe() method but it assures… Read More
The Buffer.equals() method is used to compare two buffer objects and returns True of both buffer objects are the same otherwise returns False. Syntax: buffer.equals(… Read More
The buffer.subarray() method is an inbuilt application programming interface of the buffer module which is used to crop a part of array i.e. create sub-array… Read More
The Buffer.writeInt16BE() method is an inbuilt application programming interface of class Buffer within Buffer module which is used to write integer value to buffer at… Read More
The Buffer.readInt16BE() Method is an inbuilt application programming interface of class Buffer with in Buffer module which reads a 16-bit signed integer from the buffer… Read More
The Buffer.entries() method is used to create and return the iterator of [index, byte] pairs from the contents of the buffer. Syntax: Buffer.entries() Parameters: This… Read More
The Buffer.readDoubleBE() Method in Node.js is used to read a 64-bit double from the buffer at the given offset with the Big Endian format. Syntax:… Read More
The Buffer.writeDoubleLE() Method is an inbuilt application programming interface of class Buffer within Buffer module that writes a value to the buffer at the specified… Read More
The Buffer.writeInt16LE() method is an inbuilt application programming interface of class Buffer within Buffer module which is used to write a valid signed 16-bit integer… Read More
The Buffer.poolSize property is an inbuilt application programming interface of class Buffer with in Buffer module that gives the size (in bytes) of pre-allocated internal… Read More
The Buffer.readDoubleLE() method in Node.js is used to read a 64-bit double from the buffer at the given offset with Little Endian format. Syntax: Buffer.readDoubleLE(… Read More
The Buffer.byteLength() method is used to return the length in bytes of the specified buffer object. Syntax: Buffer.byteLength( string, encoding ) Parameters: This method accepts… Read More
The Buffer.readFloatBE() Method is an inbuilt application programming interface of class Buffer within the Buffer module which is used to read big endian 32 bits… Read More
The Buffer.writeInt32BE() method is an inbuilt application programming interface of class Buffer within Buffer module which is used to write integer value to buffer at… Read More