AK-21/Graphite-Industrial-Intelligence
0
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 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