Модуль string_decoder
декодированиеBufferнанизывать
Инструкции:
1
2
3
4
5
6
7
8
9
10const {
StringDecoder
} = require('string_decoder');
const decoder = new StringDecoder('utf8');
const cent = Buffer.from([0xC2, 0xA2]);
console.log(decoder.write(cent));
const euro = Buffer.from([0xE2, 0x82, 0xAC]);
console.log(decoder.write(euro));
объект
StringDecoder
Создайте объект декодирования, см.StringDecoder
1StringDecoder string_decoder.StringDecoder;