зеркало из https://github.com/mozilla/pluotsorbet.git
Use fromCharCode with an array instead of in a loop
This commit is contained in:
Родитель
697d21c031
Коммит
ffc6f29f15
5
util.js
5
util.js
|
@ -41,14 +41,11 @@ var util = (function () {
|
|||
}
|
||||
|
||||
function fromJavaChars(chars, offset, count) {
|
||||
var s = "";
|
||||
if (typeof count !== 'number')
|
||||
count = chars.length;
|
||||
if (typeof offset !== 'number')
|
||||
offset = 0;
|
||||
for (var n = 0; n < count; ++n)
|
||||
s += String.fromCharCode(chars[offset+n]);
|
||||
return s;
|
||||
return String.fromCharCode.apply(null, chars.subarray(offset, offset + count));
|
||||
}
|
||||
|
||||
function fromJavaString(str) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче