]> zoso.dev Git - buffer.git/commitdiff
Correct README: support IE10+ only, no fallback for old browsers
authorFeross Aboukhadijeh <feross@feross.org>
Mon, 25 Nov 2013 13:08:46 +0000 (05:08 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Mon, 25 Nov 2013 13:08:46 +0000 (05:08 -0800)
README.md

index b5789a35b90ed510a17474820f4d5ede6ff1add5..cbfde2dd352d6f79f269e18b7b0cb6b576c54205 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.
-- Requires browsers to have `Uint8Array` support (IE9 and up)
+- Requires browsers to have `Uint8Array` and `DataView` support (all modern browsers, IE10+)
 
 
 ## How does it work?
@@ -27,7 +27,6 @@ The `Buffer` constructor returns instances of `Uint8Array` that are augmented wi
 
 By augmenting the instances, we can avoid modifying the Uint8Array prototype.
 
-For browsers that don't support `Uint8Array`, we fallback to the (old) `buffer-browserify`.
 
 
 ## Performance