Files
docs/node_modules/stringify-entities/lib/util/to-hexadecimal.d.ts

10 lines
278 B
TypeScript
Raw Normal View History

2025-08-27 14:05:33 +08:00
/**
* 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;