mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 00:28:15 +08:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
/**
|
|
* Encode a code point as a character reference.
|
|
*
|
|
* @param {number} code
|
|
* Code point to encode.
|
|
* @returns {string}
|
|
* Encoded character reference.
|
|
*/
|
|
export function encodeCharacterReference(code) {
|
|
return '&#x' + code.toString(16).toUpperCase() + ';'
|
|
}
|