We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ed071 commit 5331454Copy full SHA for 5331454
lib/internal/constants.js
@@ -0,0 +1,16 @@
1
+'use strict';
2
+
3
+module.exports = {
4
+ // Alphabet chars.
5
+ CHAR_UPPERCASE_A: 65, /*A*/
6
+ CHAR_LOWERCASE_A: 97, /*a*/
7
+ CHAR_UPPERCASE_Z: 90, /*Z*/
8
+ CHAR_LOWERCASE_Z: 122, /*z*/
9
10
+ // Non-alphabetic chars.
11
+ CHAR_DOT: 46, /*.*/
12
+ CHAR_FORWARD_SLASH: 47, /*/*/
13
+ CHAR_BACKWARD_SLASH: 92, /*\*/
14
+ CHAR_COLON: 58, /*:*/
15
+ CHAR_QUESTION_MARK: 63, /*?*/
16
+};
0 commit comments