Skip to content

Commit

Permalink
Fixed events.
Browse files Browse the repository at this point in the history
  • Loading branch information
petersirka committed Nov 13, 2023
1 parent db376fd commit 51dcd5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5903,7 +5903,7 @@ EventEmitter2.extend = function(obj) {
obj.emit = EE2P.emit;
obj.on = EE2P.on;
obj.once = EE2P.once;
obj.removeListener = EE2P.removeListener;
obj.off = obj.removeListener = EE2P.removeListener;
obj.removeAllListeners = EE2P.removeAllListeners;
};

Expand Down

0 comments on commit 51dcd5e

Please sign in to comment.