8 lines
150 B
TypeScript
Raw Normal View History

2025-09-05 14:59:21 +08:00
/**
* The smallest way to encode a character.
*
* @param {number} code
* @returns {string}
*/
export function formatBasic(code: number): string;