mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
9b21119e17
* Use single quotes consistently * Modernize examples to use template strings and arrow funcs * Fix a few typos * Example edits for consistency PR-URL: https://github.com/nodejs/node/pull/4282 Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
738 B
738 B
StringDecoder
Stability: 2 - Stable
To use this module, do require('string_decoder')
. StringDecoder decodes a
buffer to a string. It is a simple interface to buffer.toString()
but provides
additional support for utf8.
const StringDecoder = require('string_decoder').StringDecoder;
const decoder = new StringDecoder('utf8');
const cent = new Buffer([0xC2, 0xA2]);
console.log(decoder.write(cent));
const euro = new Buffer([0xE2, 0x82, 0xAC]);
console.log(decoder.write(euro));
Class: StringDecoder
Accepts a single argument, encoding
which defaults to 'utf8'
.
decoder.end()
Returns any trailing bytes that were left in the buffer.
decoder.write(buffer)
Returns a decoded string.