UNPKG

@freeword/meta

Version:

Meta package for Freeword: exports all core types, constants, and utilities from the src/ directory.

24 lines 2.56 kB
export declare const MAX_UINT32: number; /** String with lowercase a-z, in order */ export declare const StrAtoZlo = "abcdefghijklmnopqrstuvwxyz"; /** String with UPPER A-Z, in order */ export declare const StrAtoZup = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; /** String with numerals 0-9, in order */ export declare const StrNumerals = "0123456789"; /** String with numerals 0-9, UPPER A-Z, and lowercase a-z, in order */ export declare const StrAtoZ: string; /** String Array of lowercase a-z, in order */ export declare const AtoZlos: readonly ["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"]; /** String Array of UPPER A-Z, in order */ export declare const AtoZups: readonly ["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"]; /** Numeric Indexes of the 26 letters, in order (starting at 0) */ export declare const AtoZnums: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]; /** String Array of characters for '0' to '9', in order */ export declare const Numerals: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]; /** String Array of UPPER 'A' to 'Z' and lower 'a' to 'z', in order */ export declare const CharsAZaz: readonly ["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"]; /** String Array of numerals '0' to '9', UPPER 'A' to 'Z' and lower 'a' to 'z', in order */ export declare const Chars09AZaz: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "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"]; /** String Array of numerals '0' to '9', UPPER 'A' to 'Z', _underbar, and lower 'a' to 'z', in order */ export declare const CharsAZ09Bar: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "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"]; //# sourceMappingURL=UtilityConsts.d.ts.map