]> zoso.dev Git - buffer.git/commitdiff
Remove old browser note. [ci skip]
authorJohn-David Dalton <john.david.dalton@gmail.com>
Tue, 27 Sep 2016 17:32:57 +0000 (10:32 -0700)
committerJohn-David Dalton <john.david.dalton@gmail.com>
Tue, 27 Sep 2016 17:33:34 +0000 (10:33 -0700)
README.md

index 7cccc019b1ef9a125a6b6e1f479ae87eb6b920d9..175612bad8f692736905cf0b1ec944b189009045 100644 (file)
--- a/README.md
+++ b/README.md
@@ -78,26 +78,6 @@ single octet.
 The `Uint8Array` prototype remains unmodified.
 
 
-## one minor difference
-
-#### In old browsers, `buf.slice()` does not modify parent buffer's memory
-
-If you only support modern browsers (specifically, those with typed array support),
-then this issue does not affect you. If you support super old browsers, then read on.
-
-In node, the `slice()` method returns a new `Buffer` that shares underlying memory
-with the original Buffer. When you modify one buffer, you modify the other.
-[Read more.](https://nodejs.org/api/buffer.html#buffer_buf_slice_start_end)
-
-In browsers with typed array support, this `Buffer` implementation supports this
-behavior. In browsers without typed arrays, an alternate buffer implementation is
-used that is based on `Object` which has no mechanism to point separate
-`Buffer`s to the same underlying slab of memory.
-
-You can see which browser versions lack typed array support
-[here](https://github.com/feross/buffer/blob/master/index.js#L22-L48).
-
-
 ## tracking the latest node api
 
 This module tracks the Buffer API in the latest (unstable) version of node.js. The Buffer