mirror of
https://github.com/samsonjs/batteries.git
synced 2026-04-27 15:07:42 +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);
|
util.inherits(LineEmitter, EventEmitter);
|
||||||
|
|
||||||
LineEmitter.prototype.checkForLine = function() {
|
LineEmitter.prototype.checkForLine = function() {
|
||||||
var i = this.buffer.indexOf('\n');
|
var i = this.buffer.indexOf('\n')
|
||||||
, self = this
|
, self = this
|
||||||
;
|
;
|
||||||
if (i === -1) {
|
if (i === -1) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue