Skip to content

Commit

Permalink
doc: add support encoding link on string_decoder.md
Browse files Browse the repository at this point in the history
PR-URL: #31911
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
himself65 authored and MylesBorins committed Mar 11, 2020
1 parent ceca1c3 commit 35bea07
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/api/string_decoder.md
Expand Up @@ -49,7 +49,7 @@ console.log(decoder.end(Buffer.from([0xAC])));
added: v0.1.99
-->

* `encoding` {string} The character encoding the `StringDecoder` will use.
* `encoding` {string} The character [encoding][] the `StringDecoder` will use.
**Default:** `'utf8'`.

Creates a new `StringDecoder` instance.
Expand Down Expand Up @@ -88,3 +88,5 @@ Returns a decoded string, ensuring that any incomplete multibyte characters at
the end of the `Buffer`, or `TypedArray`, or `DataView` are omitted from the
returned string and stored in an internal buffer for the next call to
`stringDecoder.write()` or `stringDecoder.end()`.

[encoding]: buffer.html#buffer_buffers_and_character_encodings

0 comments on commit 35bea07

Please sign in to comment.