Commit 1457660c authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[arraybuffer] add comment about base64 performance

parent f3d6bfa6
Pipeline #1962 failed with stage
// shameless copy from
// https://stackoverflow.com/a/9458996
// This is because base64-codec/Data.Base64.encodeBase64 was too slow
exports.arrayBufferToBase64Impl = function(buffer) {
var binary = '';
var bytes = new Uint8Array( buffer );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment