"function" not used

This commit is contained in:
Ryan X. Charles 2014-09-15 13:48:51 -07:00
parent adbb260e70
commit 9d5d136993
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};