]> zoso.dev Git - buffer.git/commitdiff
make properties 'parent' and 'offset' non-enumerable
authorFeross Aboukhadijeh <feross@feross.org>
Fri, 16 Feb 2018 05:28:31 +0000 (21:28 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Fri, 16 Feb 2018 05:28:31 +0000 (21:28 -0800)
index.js

index 3b4513a924b2b9b59faca89d9f47fb7e99e452c2..c9ada059b9113b3ff81f87fbde33f6c6e2494808 100644 (file)
--- a/index.js
+++ b/index.js
@@ -54,7 +54,6 @@ function typedArraySupport () {
 }
 
 Object.defineProperty(Buffer.prototype, 'parent', {
-  enumerable: true,
   get: function () {
     if (!(this instanceof Buffer)) {
       return undefined
@@ -64,7 +63,6 @@ Object.defineProperty(Buffer.prototype, 'parent', {
 })
 
 Object.defineProperty(Buffer.prototype, 'offset', {
-  enumerable: true,
   get: function () {
     if (!(this instanceof Buffer)) {
       return undefined