Browse Source

FIX: EventEmitter#removeAllListeners signature

This function should return this is all cases.
v0.7.4-release
Jonas Pfenniger 15 years ago
committed by Ryan Dahl
parent
commit
53a9869ff7
  1. 4
      lib/events.js

4
lib/events.js

@ -99,8 +99,8 @@ process.EventEmitter.prototype.removeListener = function (type, listener) {
process.EventEmitter.prototype.removeAllListeners = function (type) {
// does not use listeners(), so no side effect of creating _events[type]
if (!type || !this._events || !this._events[type]) return this;
this._events[type] = null;
if (type && this._events && this._events[type]) this._events[type] = null;
return this;
};
process.EventEmitter.prototype.listeners = function (type) {

Loading…
Cancel
Save