terminology.d.ts 541 B

12345678910111213141516
  1. /**
  2. * An ASCII byte is a byte in the range 0x00 to 0x7F, inclusive.
  3. * @param {number} a The number to test.
  4. * @return {boolean} True if a is in the range 0x00 to 0x7F, inclusive.
  5. */
  6. export declare function isASCIIByte(a: number): boolean;
  7. /**
  8. * An ASCII code point is a code point in the range U+0000 to
  9. * U+007F, inclusive.
  10. */
  11. export declare const isASCIICodePoint: typeof isASCIIByte;
  12. /**
  13. * End-of-stream is a special token that signifies no more tokens
  14. * are in the stream.
  15. * @const
  16. */ export declare const end_of_stream = -1;