async-glob-events
Advanced tools
Comparing version 0.1.0 to 0.1.1
# Changes | ||
## 0.1.1 | ||
- Pass 'removeListener' events to super | ||
## 0.1.0 | ||
- Initial release |
@@ -27,3 +27,3 @@ /* | ||
AyncEmitter.prototype.emit = function (event) { | ||
if (event.event === 'newListener') { | ||
if (event.event === 'newListener' || event.event === 'removeListener') { | ||
emit.apply(this, arguments); | ||
@@ -30,0 +30,0 @@ return; |
{ | ||
"name" : "async-glob-events", | ||
"version" : "0.1.0", | ||
"version" : "0.1.1", | ||
"description" : "Event emitter with glob support on event names and asynchronous listeners", | ||
@@ -5,0 +5,0 @@ "keywords" : ["event", "emitter", "glob", "listener", "async", "return values"], |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6519