From a9b3c4f23de2830f9f580cf945960db494b96589 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Mon, 25 Nov 2024 14:57:26 +0100 Subject: [PATCH] doc: add history entry for textEncoder.encodeInto() Fixes: https://github.com/nodejs/node/issues/55938 --- doc/api/util.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/api/util.md b/doc/api/util.md index cf193528368188..fd181e3b299798 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -2166,6 +2166,10 @@ encoded bytes. ### `textEncoder.encodeInto(src, dest)` + + * `src` {string} The text to encode. * `dest` {Uint8Array} The array to hold the encode result. * Returns: {Object}