meta: enable jsdoc/check-tag-names rule

PR-URL: https://github.com/nodejs/node/pull/58521
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit is contained in:
Yagiz Nizipli
2025-07-18 05:28:21 -04:00
committed by GitHub
parent 036b1fd66d
commit 0fd1ecded6
86 changed files with 495 additions and 247 deletions

View File

@@ -53,9 +53,9 @@ const kNativeDecoder = Symbol('kNativeDecoder');
/**
* StringDecoder provides an interface for efficiently splitting a series of
* buffers into a series of JS strings without breaking apart multi-byte
* buffers into a series of JS strings without breaking apart multibyte
* characters.
* @param {string} [encoding=utf-8]
* @param {string} [encoding]
*/
function StringDecoder(encoding) {
this.encoding = normalizeEncoding(encoding);