to-hexadecimal.d.ts 278 B

123456789
  1. /**
  2. * Configurable ways to encode characters as hexadecimal references.
  3. *
  4. * @param {number} code
  5. * @param {number} next
  6. * @param {boolean|undefined} omit
  7. * @returns {string}
  8. */
  9. export function toHexadecimal(code: number, next: number, omit: boolean | undefined): string;