diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
| commit | afa87af01c79a9baa539f2992d32154d2a4739bd (patch) | |
| tree | 92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/entities/src/index.ts | |
| parent | 3b927e84d200402281f68181cd4253bc77e5528d (diff) | |
| download | neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2 neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip | |
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/entities/src/index.ts')
| -rw-r--r-- | vanilla/node_modules/entities/src/index.ts | 188 |
1 files changed, 0 insertions, 188 deletions
diff --git a/vanilla/node_modules/entities/src/index.ts b/vanilla/node_modules/entities/src/index.ts deleted file mode 100644 index 6440562..0000000 --- a/vanilla/node_modules/entities/src/index.ts +++ /dev/null @@ -1,188 +0,0 @@ -import { decodeXML, decodeHTML, DecodingMode } from "./decode.js"; -import { encodeHTML, encodeNonAsciiHTML } from "./encode.js"; -import { - encodeXML, - escapeUTF8, - escapeAttribute, - escapeText, -} from "./escape.js"; - -/** The level of entities to support. */ -export enum EntityLevel { - /** Support only XML entities. */ - XML = 0, - /** Support HTML entities, which are a superset of XML entities. */ - HTML = 1, -} - -export enum EncodingMode { - /** - * The output is UTF-8 encoded. Only characters that need escaping within - * XML will be escaped. - */ - UTF8, - /** - * The output consists only of ASCII characters. Characters that need - * escaping within HTML, and characters that aren't ASCII characters will - * be escaped. - */ - ASCII, - /** - * Encode all characters that have an equivalent entity, as well as all - * characters that are not ASCII characters. - */ - Extensive, - /** - * Encode all characters that have to be escaped in HTML attributes, - * following {@link https://html.spec.whatwg.org/multipage/parsing.html#escapingString}. - */ - Attribute, - /** - * Encode all characters that have to be escaped in HTML text, - * following {@link https://html.spec.whatwg.org/multipage/parsing.html#escapingString}. - */ - Text, -} - -export interface DecodingOptions { - /** - * The level of entities to support. - * @default {@link EntityLevel.XML} - */ - level?: EntityLevel; - /** - * Decoding mode. If `Legacy`, will support legacy entities not terminated - * with a semicolon (`;`). - * - * Always `Strict` for XML. For HTML, set this to `true` if you are parsing - * an attribute value. - * - * The deprecated `decodeStrict` function defaults this to `Strict`. - * - * @default {@link DecodingMode.Legacy} - */ - mode?: DecodingMode | undefined; -} - -/** - * Decodes a string with entities. - * - * @param input String to decode. - * @param options Decoding options. - */ -export function decode( - input: string, - options: DecodingOptions | EntityLevel = EntityLevel.XML, -): string { - const level = typeof options === "number" ? options : options.level; - - if (level === EntityLevel.HTML) { - const mode = typeof options === "object" ? options.mode : undefined; - return decodeHTML(input, mode); - } - - return decodeXML(input); -} - -/** - * Decodes a string with entities. Does not allow missing trailing semicolons for entities. - * - * @param input String to decode. - * @param options Decoding options. - * @deprecated Use `decode` with the `mode` set to `Strict`. - */ -export function decodeStrict( - input: string, - options: DecodingOptions | EntityLevel = EntityLevel.XML, -): string { - const normalizedOptions = - typeof options === "number" ? { level: options } : options; - normalizedOptions.mode ??= DecodingMode.Strict; - - return decode(input, normalizedOptions); -} - -/** - * Options for `encode`. - */ -export interface EncodingOptions { - /** - * The level of entities to support. - * @default {@link EntityLevel.XML} - */ - level?: EntityLevel; - /** - * Output format. - * @default {@link EncodingMode.Extensive} - */ - mode?: EncodingMode; -} - -/** - * Encodes a string with entities. - * - * @param input String to encode. - * @param options Encoding options. - */ -export function encode( - input: string, - options: EncodingOptions | EntityLevel = EntityLevel.XML, -): string { - const { mode = EncodingMode.Extensive, level = EntityLevel.XML } = - typeof options === "number" ? { level: options } : options; - - switch (mode) { - case EncodingMode.UTF8: { - return escapeUTF8(input); - } - case EncodingMode.Attribute: { - return escapeAttribute(input); - } - case EncodingMode.Text: { - return escapeText(input); - } - case EncodingMode.ASCII: { - return level === EntityLevel.HTML - ? encodeNonAsciiHTML(input) - : encodeXML(input); - } - // eslint-disable-next-line unicorn/no-useless-switch-case - case EncodingMode.Extensive: - default: { - return level === EntityLevel.HTML - ? encodeHTML(input) - : encodeXML(input); - } - } -} - -export { - encodeXML, - escape, - escapeUTF8, - escapeAttribute, - escapeText, -} from "./escape.js"; - -export { - encodeHTML, - encodeNonAsciiHTML, - // Legacy aliases (deprecated) - encodeHTML as encodeHTML4, - encodeHTML as encodeHTML5, -} from "./encode.js"; - -export { - EntityDecoder, - DecodingMode, - decodeXML, - decodeHTML, - decodeHTMLStrict, - decodeHTMLAttribute, - // Legacy aliases (deprecated) - decodeHTML as decodeHTML4, - decodeHTML as decodeHTML5, - decodeHTMLStrict as decodeHTML4Strict, - decodeHTMLStrict as decodeHTML5Strict, - decodeXML as decodeXMLStrict, -} from "./decode.js"; |
