Sha256: 44dfa8d1ceced0d40ff199fc9301b9ece46a0432b85d6a508e0c17e6f38a203e
Contents?: true
Size: 966 Bytes
Versions: 26
Compression:
Stored size: 966 Bytes
Contents
/** * ``` * 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;
Version data entries
26 entries across 26 versions & 1 rubygems