]> zoso.dev Git - buffer.git/commitdiff
change style of condition in createBuffer
authorKirill Fomichev <fanatid@ya.ru>
Mon, 17 Oct 2016 09:45:45 +0000 (12:45 +0300)
committerKirill Fomichev <fanatid@ya.ru>
Mon, 17 Oct 2016 09:45:45 +0000 (12:45 +0300)
index.js

index 4957287c473f729cf5b8c3412a5e1768993d73f4..7baf22a94dba6f4cdd1ca6337b38afa3e52a0592 100644 (file)
--- a/index.js
+++ b/index.js
@@ -52,7 +52,7 @@ function typedArraySupport () {
 }
 
 function createBuffer (length) {
-  if (K_MAX_LENGTH < length) {
+  if (length > K_MAX_LENGTH) {
     throw new RangeError('Invalid typed array length')
   }
   // Return an augmented `Uint8Array` instance