Some comment and copyright updates

This commit is contained in:
2017-07-19 19:12:56 +02:00
parent 39582e0f26
commit 017bda025e
5 changed files with 12 additions and 13 deletions

View File

@@ -50,7 +50,7 @@ function str2ab2(str) {
}
function str2ab(str) {
var buf = new ArrayBuffer(str.length); // 2 bytes for each char
var buf = new ArrayBuffer(str.length);
// var buf = new ArrayBuffer(str.length*2); // 2 bytes for each char
var bufView = new Uint8Array(buf);
for (var i=0, strLen=str.length; i < strLen; i++) {