14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
|
/**
|
||
|
* Configurable ways to encode characters as decimal references.
|
||
|
*
|
||
|
* @param {number} code
|
||
|
* @param {number} next
|
||
|
* @param {boolean|undefined} omit
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
export function toDecimal(
|
||
|
code: number,
|
||
|
next: number,
|
||
|
omit: boolean | undefined
|
||
|
): string
|