Files
skills-here-run-place/node_modules/stringify-entities/lib/util/to-hexadecimal.d.ts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

10 lines
278 B
TypeScript

/**
* 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;