Skip to content

Commit 7b33005

Browse files
committed
fix long line
1 parent ad3fe75 commit 7b33005

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/events.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ EventEmitter.init = function() {
3232
}
3333
}
3434

35-
if (!this[eventSymbol] || this[eventSymbol] === Object.getPrototypeOf(this)[eventSymbol])
35+
if (!this[eventSymbol] ||
36+
this[eventSymbol] === Object.getPrototypeOf(this)[eventSymbol])
3637
this[eventSymbol] = new Map();
3738

3839
this._maxListeners = this._maxListeners || undefined;

0 commit comments

Comments
 (0)