Files
est-frame/node_modules/stringify-entities/lib/util/to-hexadecimal.d.ts
2025-10-22 05:38:27 +00:00

14 lines
285 B
TypeScript
Executable File

/**
* Configurable ways to encode characters as hexadecimal references.
*
* @param {number} code
* @param {number} next
* @param {boolean|undefined} omit
* @returns {string}
*/
export function toHexadecimal(
code: number,
next: number,
omit: boolean | undefined
): string