]> zoso.dev Git - buffer.git/commitdiff
convert to ES5 for IE11 support
authorFeross Aboukhadijeh <feross@feross.org>
Fri, 16 Feb 2018 05:28:09 +0000 (21:28 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Fri, 16 Feb 2018 05:28:09 +0000 (21:28 -0800)
index.js

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