]> zoso.dev Git - buffer.git/commitdiff
add back Buffer._augment for one more major version
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 27 Jan 2016 14:37:50 +0000 (15:37 +0100)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 27 Jan 2016 14:37:50 +0000 (15:37 +0100)
It’s used by typedarray-to-buffer 3.0.4 and probably others.

index.js

index bbb2eff55d8eb3dc3fdf073a98584635dd47f454..0f2ddbfd830ba8af1358208174cd49c0c8b4215f 100644 (file)
--- a/index.js
+++ b/index.js
@@ -100,6 +100,12 @@ function Buffer (arg) {
   return fromObject(this, arg)
 }
 
+// TODO: Legacy, not needed anymore. Remove in next major version.
+Buffer._augment = function (arr) {
+  arr.__proto__ = Buffer.prototype
+  return arr
+}
+
 function fromNumber (that, length) {
   that = allocate(that, length < 0 ? 0 : checked(length) | 0)
   if (!Buffer.TYPED_ARRAY_SUPPORT) {