From 1e3601c668b963906eb3cf2aa3237af7589aa95e Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 31 Dec 2013 17:04:48 -0800 Subject: [PATCH] readme: re-order features --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5672a1c..f7bb557 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,15 @@ It will also be loaded if you use the global `Buffer` variable. ## Features -- Backed by `ArrayBuffer` (not `Object`, so it's fast) -- Preserves Node API exactly +- **Backed by `ArrayBuffer` (not `Object`, so it's fast)** +- **Bundle size is nearly half of the original `buffer-browserify` (35KB vs 65KB!)** +- **Excellent browser support (IE 6+, Chrome 4+, Firefox 3+, Safari 5.1+, Opera 11+, iOS).** +- Preserves Node API exactly. - Faster pretty much across the board (see perf results below) - `.slice()` returns instances of the same type -- Square-bracket `buf[4]` notation works! +- Square-bracket `buf[4]` notation works, even in old browsers like IE6! - Does not modify any browser prototypes. -- Excellent browser support (IE 6+, Chrome 4+, Firefox 3+, Safari 5.1+, Opera 11+, iOS). -- **Bundle size is nearly half of the original `buffer-browserify` (35KB vs 65KB!)** -- All tests from the original `buffer-browserify` project pass. +- All tests from the original `buffer-browserify` project pass, plus additional ones. ## How does it work? -- 2.34.1