Use fromCharCode with an array instead of in a loop

This commit is contained in:
Marco Castelluccio 2014-09-23 17:42:24 -07:00
Родитель 697d21c031
Коммит ffc6f29f15
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -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) {