15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
|
/**
|
||
|
* Configurable ways to encode characters as decimal references.
|
||
|
*
|
||
|
* @param {number} code
|
||
|
* @param {number} next
|
||
|
* @param {boolean|undefined} omit
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
export function toDecimal(code, next, omit) {
|
||
|
const value = '&#' + String(code)
|
||
|
return omit && next && !/\d/.test(String.fromCharCode(next))
|
||
|
? value
|
||
|
: value + ';'
|
||
|
}
|