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 b0ac7bd commit 9c8d4cbCopy full SHA for 9c8d4cb
lib/loader/index.js
@@ -52,6 +52,7 @@ function getStringImpl(buffer, ptr) {
52
let str = "", off = 0;
53
while (len > STRING_CHUNKSIZE) {
54
str += String.fromCharCode.apply(String, wtf16.subarray(off, off += STRING_CHUNKSIZE));
55
+ len -= STRING_CHUNKSIZE;
56
}
57
return str + String.fromCharCode.apply(String, wtf16.subarray(off));
58
lib/loader/umd/index.js
@@ -67,6 +67,7 @@ var loader = (function(exports) {
67
68
69
70
71
72
73
0 commit comments