]> zoso.dev Git - buffer.git/commitdiff
remove redundant check (fix #110)
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 24 Mar 2016 02:57:55 +0000 (19:57 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 24 Mar 2016 02:57:55 +0000 (19:57 -0700)
index.js

index c939c81d290802a569fe3f451d56756a0e06fc4f..5dae0daf0278e655c3d5ac2ab85480371d4f609a 100644 (file)
--- a/index.js
+++ b/index.js
@@ -451,7 +451,6 @@ Buffer.prototype.inspect = function inspect () {
 
 Buffer.prototype.compare = function compare (b) {
   if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
-  if (this === b) return 0
   return Buffer.compare(this, b)
 }