format-basic.d.ts 150 B

1234567
  1. /**
  2. * The smallest way to encode a character.
  3. *
  4. * @param {number} code
  5. * @returns {string}
  6. */
  7. export function formatBasic(code: number): string;