mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
doc: add print results for examples in StringDecoder
PR-URL: https://github.com/nodejs/node/pull/49326 Refs: https://github.com/nodejs/node/pull/49143 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
5a0777776d
commit
b9153af4cc
@ -21,10 +21,10 @@ const { StringDecoder } = require('node:string_decoder');
|
||||
const decoder = new StringDecoder('utf8');
|
||||
|
||||
const cent = Buffer.from([0xC2, 0xA2]);
|
||||
console.log(decoder.write(cent));
|
||||
console.log(decoder.write(cent)); // Prints: ¢
|
||||
|
||||
const euro = Buffer.from([0xE2, 0x82, 0xAC]);
|
||||
console.log(decoder.write(euro));
|
||||
console.log(decoder.write(euro)); // Prints: €
|
||||
```
|
||||
|
||||
When a `Buffer` instance is written to the `StringDecoder` instance, an
|
||||
@ -41,7 +41,7 @@ const decoder = new StringDecoder('utf8');
|
||||
|
||||
decoder.write(Buffer.from([0xE2]));
|
||||
decoder.write(Buffer.from([0x82]));
|
||||
console.log(decoder.end(Buffer.from([0xAC])));
|
||||
console.log(decoder.end(Buffer.from([0xAC]))); // Prints: €
|
||||
```
|
||||
|
||||
## Class: `StringDecoder`
|
||||
|
Loading…
Reference in New Issue
Block a user