astro-ghostcms/.pnpm-store/v3/files/12/5a8c6efa56dbe1e812da9664d24...

10 lines
192 B
Plaintext

/**
* The smallest way to encode a character.
*
* @param {number} code
* @returns {string}
*/
export function formatBasic(code) {
return '&#x' + code.toString(16).toUpperCase() + ';'
}