1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * ```
- * WhiteSpace ::
- * - "Horizontal Tab (U+0009)"
- * - "Space (U+0020)"
- * ```
- * @internal
- */
- export declare function isWhiteSpace(code: number): boolean;
- /**
- * ```
- * Digit :: one of
- * - `0` `1` `2` `3` `4` `5` `6` `7` `8` `9`
- * ```
- * @internal
- */
- export declare function isDigit(code: number): boolean;
- /**
- * ```
- * Letter :: one of
- * - `A` `B` `C` `D` `E` `F` `G` `H` `I` `J` `K` `L` `M`
- * - `N` `O` `P` `Q` `R` `S` `T` `U` `V` `W` `X` `Y` `Z`
- * - `a` `b` `c` `d` `e` `f` `g` `h` `i` `j` `k` `l` `m`
- * - `n` `o` `p` `q` `r` `s` `t` `u` `v` `w` `x` `y` `z`
- * ```
- * @internal
- */
- export declare function isLetter(code: number): boolean;
- /**
- * ```
- * NameStart ::
- * - Letter
- * - `_`
- * ```
- * @internal
- */
- export declare function isNameStart(code: number): boolean;
- /**
- * ```
- * NameContinue ::
- * - Letter
- * - Digit
- * - `_`
- * ```
- * @internal
- */
- export declare function isNameContinue(code: number): boolean;
|