Skip to content

Commit

Permalink
Add enumerable and writable descriptors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton authored and feross committed Sep 27, 2016
1 parent 62fc25c commit 707c90d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ if (typeof Symbol !== 'undefined' && Symbol.species &&
Buffer[Symbol.species] === Buffer) {
Object.defineProperty(Buffer, Symbol.species, {
value: null,
configurable: true
configurable: true,
enumerable: false,
writable: false
})
}

Expand Down

0 comments on commit 707c90d

Please sign in to comment.