]> zoso.dev Git - buffer.git/commitdiff
remove console.logs
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 8 May 2014 00:07:30 +0000 (17:07 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 8 May 2014 00:07:30 +0000 (17:07 -0700)
index.js
test/buffer.js

index e45ebcfe52ca0c4fb6a344f4ccfeb12e7e3deb96..90e30999cd7bc563a1f1ed13b4608925a1d8b4d7 100644 (file)
--- a/index.js
+++ b/index.js
@@ -370,7 +370,6 @@ Buffer.prototype.toJSON = function () {
 
 Buffer.prototype.equals = function (b) {
   assert(Buffer.isBuffer(b), 'Argument must be a Buffer')
-  console.log(this, b)
   return Buffer.compare(this, b) === 0
 }
 
index 6c953e98f68293cbdc7d00b932dd7b9f2b6fa008..bff5f3b558c4d126c30d8ae17c3776b9b20225e9 100644 (file)
@@ -227,7 +227,6 @@ test('fill (string)', function (t) {
   b.fill('abc')
   t.equal(b.toString(), 'abcabcabca')
   b.fill('է')
-  console.log(b[0], b[1], b[2], b[3], b[4])
   t.equal(b.toString(), 'էէէէէ')
   t.end()
 })