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 6fe4c8c commit 8eb0dbaCopy full SHA for 8eb0dba
lib/internal/mime.js
@@ -24,6 +24,7 @@ const START_ENDING_WHITESPACE = /[\r\n\t ]*$/;
24
25
function toASCIILower(str) {
26
if (!/[^\x00-\x7f]/.test(str)) return StringPrototypeToLowerCase(str);
27
+ let result = '';
28
for (let i = 0; i < str.length; i++) {
29
const char = str[i];
30
0 commit comments