Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Lüth authored and Dirk Lüth committed May 19, 2017
1 parent 3a6dc59 commit 229ad9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -206,7 +206,7 @@ class Emitter {
let event = new Event(name, this);

listener.some((listener) => {
applyEvent.call(this, listener.callback, event, details)
applyEvent.call(this, listener.callback, event, details);

if(listener.remaining && !(listener.remaining -= 1)) {
this.off(listener.identifier, listener.callback);
Expand Down

0 comments on commit 229ad9a

Please sign in to comment.