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

10 lines
192 B
Plaintext
Raw Normal View History

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