CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
format-basic.js10 linesDownload Raw Back to util
1/**2 * The smallest way to encode a character.3 *4 * @param {number} code5 * @returns {string}6 */7export function formatBasic(code) {8  return '&#x' + code.toString(16).toUpperCase() + ';'9}10