Commit 87c0a322 87c0a3225036820271213a562481c741f6abf82b by Nicolas Perriault

silly me is silly

1 parent d1fe3153
......@@ -222,7 +222,7 @@ EventEmitter.prototype.filter = function() {
return;
}
var filter = this._filters[type];
if (!filter || typeof filter !== 'function') {
if (typeof filter !== 'function') {
return;
}
return filter.apply(null, Array.prototype.splice.call(arguments, 1));
......