]> zoso.dev Git - buffer.git/commitdiff
style
authorFeross Aboukhadijeh <feross@feross.org>
Fri, 16 Feb 2018 07:58:34 +0000 (23:58 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Fri, 16 Feb 2018 07:58:34 +0000 (23:58 -0800)
index.js

index db555139693750a8d8f83ceeb074fbc418c6342b..b2f6676521ce7b3edb38dd2a477f88972acca872 100644 (file)
--- a/index.js
+++ b/index.js
@@ -55,18 +55,14 @@ function typedArraySupport () {
 
 Object.defineProperty(Buffer.prototype, 'parent', {
   get: function () {
-    if (!Buffer.isBuffer(this)) {
-      return undefined
-    }
+    if (!Buffer.isBuffer(this)) return undefined
     return this.buffer
   }
 })
 
 Object.defineProperty(Buffer.prototype, 'offset', {
   get: function () {
-    if (!Buffer.isBuffer(this)) {
-      return undefined
-    }
+    if (!Buffer.isBuffer(this)) return undefined
     return this.byteOffset
   }
 })