Uint8Array在Chrome上的速度太慢

时间:2018-10-25 15:34:11

标签: performance google-chrome google-chrome-extension buffer uint8array

我想优化使用Uint8Array的速度性能。现在,在Google Chrome中使用4mb大小的文件大约需要3121.5毫秒。虽然,在Firefox上相同的操作需要144毫秒。我该怎么办?

    stringToBuffer: function(str) {
            const arr = str.split(',');
            const view = new Uint8Array(arr);
            return view.buffer;
},

0 个答案:

没有答案