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 1a7112c commit 27caffcCopy full SHA for 27caffc
functions/xml/utf8_encode.js
@@ -32,7 +32,7 @@ function utf8_encode (argString) {
32
} else if (c1 > 127 && c1 < 2048) {
33
enc = String.fromCharCode((c1 >> 6) | 192, (c1 & 63) | 128);
34
} else {
35
- enc = String.fromCharCode((c1 >> 12) | 224, ((c1 >> 6) & 63) | 128), (c1 & 63) | 128);
+ enc = String.fromCharCode((c1 >> 12) | 224, ((c1 >> 6) & 63) | 128, (c1 & 63) | 128);
36
}
37
if (enc !== null) {
38
if (end > start) {
0 commit comments