UNPKG

194 BTypeScriptView Raw
1/**
2 * Checks if the character is or belongs to a number.
3 * [0-9]|+|-|.
4 */
5export declare function isDigitStart(code: number): boolean;
6export declare function isDigit(code: number): boolean;