]> zoso.dev Git - buffer.git/commitdiff
Use base64-js fork that works in IE6-8 (until they accept my PR)
authorFeross Aboukhadijeh <feross@feross.org>
Sun, 15 Dec 2013 10:45:29 +0000 (02:45 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Sun, 15 Dec 2013 10:45:29 +0000 (02:45 -0800)
index.js
package.json

index 9325300d7801961d10bc1504c534abc18fb22093..ce7e8540e1bd719cf10c74dbcc2afb7b007add51 100644 (file)
--- 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
 }
index bffc1b539d7c1ae659e2d23a078f0bb22f511683..dcba1ad641b95a2c58b95cfe273a489025d90165 100644 (file)
@@ -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": {