From 207c75c1a1357bf9797aabfdc38217ae6c91f9d1 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Mon, 25 Nov 2013 05:08:46 -0800 Subject: [PATCH] Correct README: support IE10+ only, no fallback for old browsers --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b5789a3..cbfde2d 100644 --- 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 -- 2.34.1