CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
1/**2 * Decode a single character reference (without the `&` or `;`).3 * You probably only need this when you’re building parsers yourself that follow4 * different rules compared to HTML.5 * This is optimized to be tiny in browsers.6 *7 * @param {string} value8 *   `notin` (named), `#123` (deci), `#x123` (hexa).9 * @returns {string|false}10 *   Decoded reference.11 */12export function decodeNamedCharacterReference(value: string): string | false;13//# sourceMappingURL=index.d.ts.map