From 78fd71ef3950a4ed0befaaeb4bd931cc69a2510a Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sun, 15 Dec 2013 02:45:29 -0800 Subject: [PATCH] Use base64-js fork that works in IE6-8 (until they accept my PR) --- index.js | 6 ++---- package.json | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) 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": { -- 2.34.1