From: Feross Aboukhadijeh Date: Sun, 15 Dec 2013 10:45:29 +0000 (-0800) Subject: Use base64-js fork that works in IE6-8 (until they accept my PR) X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=78fd71ef3950a4ed0befaaeb4bd931cc69a2510a;p=buffer.git Use base64-js fork that works in IE6-8 (until they accept my PR) --- diff --git a/index.js b/index.js index 9325300..ce7e854 100644 --- a/index.js +++ b/index.js @@ -1095,13 +1095,11 @@ function base64ToBytes (str) { } function blitBuffer (src, dst, offset, length) { - var pos, i = 0 - while (i < length) { + var pos + for (var i = 0; i < length; i++) { if ((i + offset >= dst.length) || (i >= src.length)) break - dst[i + offset] = src[i] - i++ } return i } diff --git a/package.json b/package.json index bffc1b5..dcba1ad 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "buffer module compatibility for browserify (backed by ArrayBuffer so its fast!)", "main": "index.js", "dependencies": { - "base64-js": "~0.0.4", + "base64-js": "feross/base64-js", "typedarray": "~0.0.5" }, "devDependencies": {