11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst isWindows = process.platform === 'win32'; 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_cimodule.exports = { 61cb0ef41Sopenharmony_ci // Alphabet chars. 71cb0ef41Sopenharmony_ci CHAR_UPPERCASE_A: 65, /* A */ 81cb0ef41Sopenharmony_ci CHAR_LOWERCASE_A: 97, /* a */ 91cb0ef41Sopenharmony_ci CHAR_UPPERCASE_Z: 90, /* Z */ 101cb0ef41Sopenharmony_ci CHAR_LOWERCASE_Z: 122, /* z */ 111cb0ef41Sopenharmony_ci CHAR_UPPERCASE_C: 67, /* C */ 121cb0ef41Sopenharmony_ci CHAR_LOWERCASE_B: 98, /* b */ 131cb0ef41Sopenharmony_ci CHAR_LOWERCASE_E: 101, /* e */ 141cb0ef41Sopenharmony_ci CHAR_LOWERCASE_N: 110, /* n */ 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ci // Non-alphabetic chars. 171cb0ef41Sopenharmony_ci CHAR_DOT: 46, /* . */ 181cb0ef41Sopenharmony_ci CHAR_FORWARD_SLASH: 47, /* / */ 191cb0ef41Sopenharmony_ci CHAR_BACKWARD_SLASH: 92, /* \ */ 201cb0ef41Sopenharmony_ci CHAR_VERTICAL_LINE: 124, /* | */ 211cb0ef41Sopenharmony_ci CHAR_COLON: 58, /* : */ 221cb0ef41Sopenharmony_ci CHAR_QUESTION_MARK: 63, /* ? */ 231cb0ef41Sopenharmony_ci CHAR_UNDERSCORE: 95, /* _ */ 241cb0ef41Sopenharmony_ci CHAR_LINE_FEED: 10, /* \n */ 251cb0ef41Sopenharmony_ci CHAR_CARRIAGE_RETURN: 13, /* \r */ 261cb0ef41Sopenharmony_ci CHAR_TAB: 9, /* \t */ 271cb0ef41Sopenharmony_ci CHAR_FORM_FEED: 12, /* \f */ 281cb0ef41Sopenharmony_ci CHAR_EXCLAMATION_MARK: 33, /* ! */ 291cb0ef41Sopenharmony_ci CHAR_HASH: 35, /* # */ 301cb0ef41Sopenharmony_ci CHAR_SPACE: 32, /* */ 311cb0ef41Sopenharmony_ci CHAR_NO_BREAK_SPACE: 160, /* \u00A0 */ 321cb0ef41Sopenharmony_ci CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279, /* \uFEFF */ 331cb0ef41Sopenharmony_ci CHAR_LEFT_SQUARE_BRACKET: 91, /* [ */ 341cb0ef41Sopenharmony_ci CHAR_RIGHT_SQUARE_BRACKET: 93, /* ] */ 351cb0ef41Sopenharmony_ci CHAR_LEFT_ANGLE_BRACKET: 60, /* < */ 361cb0ef41Sopenharmony_ci CHAR_RIGHT_ANGLE_BRACKET: 62, /* > */ 371cb0ef41Sopenharmony_ci CHAR_LEFT_CURLY_BRACKET: 123, /* { */ 381cb0ef41Sopenharmony_ci CHAR_RIGHT_CURLY_BRACKET: 125, /* } */ 391cb0ef41Sopenharmony_ci CHAR_HYPHEN_MINUS: 45, /* - */ 401cb0ef41Sopenharmony_ci CHAR_PLUS: 43, /* + */ 411cb0ef41Sopenharmony_ci CHAR_DOUBLE_QUOTE: 34, /* " */ 421cb0ef41Sopenharmony_ci CHAR_SINGLE_QUOTE: 39, /* ' */ 431cb0ef41Sopenharmony_ci CHAR_PERCENT: 37, /* % */ 441cb0ef41Sopenharmony_ci CHAR_SEMICOLON: 59, /* ; */ 451cb0ef41Sopenharmony_ci CHAR_CIRCUMFLEX_ACCENT: 94, /* ^ */ 461cb0ef41Sopenharmony_ci CHAR_GRAVE_ACCENT: 96, /* ` */ 471cb0ef41Sopenharmony_ci CHAR_AT: 64, /* @ */ 481cb0ef41Sopenharmony_ci CHAR_AMPERSAND: 38, /* & */ 491cb0ef41Sopenharmony_ci CHAR_EQUAL: 61, /* = */ 501cb0ef41Sopenharmony_ci 511cb0ef41Sopenharmony_ci // Digits 521cb0ef41Sopenharmony_ci CHAR_0: 48, /* 0 */ 531cb0ef41Sopenharmony_ci CHAR_9: 57, /* 9 */ 541cb0ef41Sopenharmony_ci 551cb0ef41Sopenharmony_ci EOL: isWindows ? '\r\n' : '\n', 561cb0ef41Sopenharmony_ci}; 57