mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 15:16:37 +00:00
10 lines
278 B
TypeScript
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;
|