first-commit
Some checks failed
CI Pipeline / build (push) Failing after 3m23s

This commit is contained in:
2025-08-27 14:05:33 +08:00
commit 9e1b8bdc9d
5159 changed files with 1081326 additions and 0 deletions

10
node_modules/stringify-entities/lib/util/to-named.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
/**
* Configurable ways to encode characters as named references.
*
* @param {number} code
* @param {number} next
* @param {boolean|undefined} omit
* @param {boolean|undefined} attribute
* @returns {string}
*/
export function toNamed(code: number, next: number, omit: boolean | undefined, attribute: boolean | undefined): string;