buf.write(string[, offset[, length]][, encoding])
Writes string
to the Buffer at offset
using the given encoding
. The length
parameter is the number of bytes to write. If the Buffer did not contain enough space to fit the entire string, only a partial amount of the string will be written however, it will not write only partially encoded characters.
1 2 3 4 | const buf = Buffer.allocUnsafe(256); const len = buf.write( '\u00bd + \u00bc = \u00be' , 0); console.log(`${len} bytes: ${buf.toString( 'utf8' , 0, len)}`); // Prints: 12 bytes: ½ + ¼ = ¾ |
Please login to continue.