]> zoso.dev Git - buffer.git/commitdiff
Require browsers to have `Uint8Array` support
authorFeross Aboukhadijeh <feross@feross.org>
Mon, 18 Nov 2013 14:58:39 +0000 (06:58 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Mon, 18 Nov 2013 14:58:39 +0000 (06:58 -0800)
README.md
index.js
package.json

index 6c8414ae5ec27a1fec827d1b9302284d49c2f54c..b5789a35b90ed510a17474820f4d5ede6ff1add5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ It will also be loaded if you use the global `Buffer` variable.
 - Square-bracket `buf[4]` notation works!
 - Does not modify any browser prototypes.
 - All tests from the original `buffer-browserify` project pass.
-- Works in browsers **without** `Uint8Array` support (IE9 and below)
+- Requires browsers to have `Uint8Array` support (IE9 and up)
 
 
 ## How does it work?
index 2e64c6369f968fd98610f679fa81d00cc3526609..b86e93f02265a68945a858c96e4c41a10a462fc8 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1,15 +1,9 @@
 var assert
 
-if (typeof Uint8Array === 'function') {
-  // Modern browser!
-  exports.Buffer = Buffer
-  exports.SlowBuffer = Buffer
-  exports.INSPECT_MAX_BYTES = 50
-  Buffer.poolSize = 8192
-} else {
-  // Old browser :(
-  module.exports = require('buffer-browserify')
-}
+exports.Buffer = Buffer
+exports.SlowBuffer = Buffer
+exports.INSPECT_MAX_BYTES = 50
+Buffer.poolSize = 8192
 
 // TODO: throw the correct exception type on errors (look at node source)
 
index 57ebd74a03588ed043e78dce6e9b1ceea73fd17f..5f6b2af4ff2f9a80e5c3ecbf1524f193c0d95dbe 100644 (file)
@@ -4,12 +4,10 @@
   "description": "buffer module compatibility for browserify (backed by ArrayBuffer so its fast!)",
   "main": "index.js",
   "dependencies": {
-    "base64-js": "0.0.4",
-    "buffer-browserify": "~0.2.2"
+    "base64-js": "0.0.4"
   },
   "devDependencies": {
     "tape": "~2.1.0",
-    "tap": "~0.4.4",
     "benchmark": "~1.0.0",
     "browserify": "~2.35.4"
   },