mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +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;
|