eslint-plugin-regexp
Version:
ESLint plugin for finding RegExp mistakes and RegExp style guide violations.
75 lines (74 loc) • 3.34 kB
TypeScript
export declare const CP_BACKSPACE = 8;
export declare const CP_TAB = 9;
export declare const CP_LF = 10;
export declare const CP_VT = 11;
export declare const CP_FF = 12;
export declare const CP_CR = 13;
export declare const CP_SPACE: number;
export declare const CP_BAN: number;
export declare const CP_HASH: number | undefined;
export declare const CP_DOLLAR: number;
export declare const CP_PERCENT: number;
export declare const CP_AMP: number;
export declare const CP_OPENING_PAREN: number;
export declare const CP_CLOSING_PAREN: number;
export declare const CP_STAR: number;
export declare const CP_PLUS: number;
export declare const CP_COMMA: number;
export declare const CP_MINUS: number;
export declare const CP_DOT: number;
export declare const CP_SLASH: number;
export declare const CP_COLON: number;
export declare const CP_SEMI: number;
export declare const CP_LT: number;
export declare const CP_EQ: number;
export declare const CP_GT: number;
export declare const CP_QUESTION: number;
export declare const CP_AT: number;
export declare const CP_OPENING_BRACKET: number;
export declare const CP_BACK_SLASH: number;
export declare const CP_CLOSING_BRACKET: number;
export declare const CP_CARET: number;
export declare const CP_BACKTICK: number;
export declare const CP_APOSTROPHE: number;
export declare const CP_OPENING_BRACE: number;
export declare const CP_PIPE: number;
export declare const CP_CLOSING_BRACE: number;
export declare const CP_TILDE: number;
export declare const CP_NEL: number;
export declare const CP_NBSP: number;
export declare const CP_OGHAM_SPACE_MARK: number;
export declare const CP_MONGOLIAN_VOWEL_SEPARATOR: number;
export declare const CP_EN_QUAD: number;
export declare const CP_HAIR_SPACE: number;
export declare const CP_ZWSP: number;
export declare const CP_ZWNJ: number;
export declare const CP_ZWJ: number;
export declare const CP_LRM: number;
export declare const CP_RLM: number;
export declare const CP_LINE_SEPARATOR: number;
export declare const CP_PARAGRAPH_SEPARATOR: number;
export declare const CP_NNBSP: number;
export declare const CP_MMSP: number;
export declare const CP_BRAILLE_PATTERN_BLANK: number;
export declare const CP_IDEOGRAPHIC_SPACE: number;
export declare const CP_BOM: number;
export declare const CP_DIGIT_ZERO: number;
export declare const CP_DIGIT_NINE: number;
export declare const CP_SMALL_A: number;
export declare const CP_SMALL_Z: number;
export declare const CP_CAPITAL_A: number;
export declare const CP_CAPITAL_Z: number;
export declare const CP_LOW_LINE: number;
export declare const CP_RANGE_SMALL_LETTER: readonly [number, number];
export declare const CP_RANGE_CAPITAL_LETTER: readonly [number, number];
export declare function isDigit(codePoint: number): boolean;
export declare function isLowercaseLetter(codePoint: number): boolean;
export declare function isUppercaseLetter(codePoint: number): boolean;
export declare function isLetter(codePoint: number): boolean;
export declare function toLowerCodePoint(codePoint: number): number;
export declare function toUpperCodePoint(codePoint: number): number;
export declare function isSymbol(codePoint: number): boolean;
export declare function isSpace(codePoint: number): boolean;
export declare function isWord(codePoint: number): boolean;
export declare function isInvisible(codePoint: number): boolean;