]> zoso.dev Git - buffer.git/commitdiff
remove unneeded property access
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 9 Feb 2017 03:25:08 +0000 (19:25 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 9 Feb 2017 03:25:08 +0000 (19:25 -0800)
index.js

index a7017e99758109567081ce2ccd579200851574f4..c6bfc10e2ebb7f99fea314b4b82322c8079563e6 100644 (file)
--- a/index.js
+++ b/index.js
@@ -216,8 +216,6 @@ function fromArrayLike (array) {
 }
 
 function fromArrayBuffer (array, byteOffset, length) {
-  array.byteLength // this throws if `array` is not a valid ArrayBuffer
-
   if (byteOffset < 0 || array.byteLength < byteOffset) {
     throw new RangeError('\'offset\' is out of bounds')
   }