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 002c35c commit e8ca330Copy full SHA for e8ca330
test/parallel/test-internal-util-normalizeencoding.js
@@ -18,6 +18,7 @@ const tests = [
18
['utF-8', 'utf8'],
19
['ucs2', 'utf16le'],
20
['UCS2', 'utf16le'],
21
+ ['UcS2', 'utf16le'],
22
['ucs-2', 'utf16le'],
23
['UCS-2', 'utf16le'],
24
['UcS-2', 'utf16le'],
@@ -31,8 +32,11 @@ const tests = [
31
32
['LaTiN1', 'latin1'],
33
['base64', 'base64'],
34
['BASE64', 'base64'],
35
+ ['Base64', 'base64'],
36
['hex', 'hex'],
37
['HEX', 'hex'],
38
+ ['ASCII', 'ascii'],
39
+ ['AsCii', 'ascii'],
40
['foo', undefined],
41
[1, undefined],
42
[false, undefined],
0 commit comments