mirror of
https://github.com/samsonjs/batteries.git
synced 2026-03-31 10:15:45 +00:00
fix a syntax error
This commit is contained in:
parent
34a5d9455e
commit
3ecc25e518
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ function LineEmitter(fileOrStream) {
|
|||
util.inherits(LineEmitter, EventEmitter);
|
||||
|
||||
LineEmitter.prototype.checkForLine = function() {
|
||||
var i = this.buffer.indexOf('\n');
|
||||
var i = this.buffer.indexOf('\n')
|
||||
, self = this
|
||||
;
|
||||
if (i === -1) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue