From 9d5d13699332df0513c9168c1797c06a5277f9b6 Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Mon, 15 Sep 2014 13:48:51 -0700 Subject: [PATCH] "function" not used --- lib/bufferreader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bufferreader.js b/lib/bufferreader.js index f33ec90..15369fb 100644 --- a/lib/bufferreader.js +++ b/lib/bufferreader.js @@ -18,7 +18,7 @@ BufferReader.prototype.set = function(obj) { return this; }; -BufferReader.prototype.eof = function eof() { +BufferReader.prototype.eof = function() { return this.pos >= this.buf.length; };