Skip to content

Commit 7298216

Browse files
committedNov 17, 2023
Use a Map for storing listeners
1 parent a56d239 commit 7298216

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed
 

‎index.js

+17-15
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ function Emitter(object) {
33
return mixin(object);
44
}
55

6-
this._callbacks = {};
6+
this._callbacks = new Map();
77
}
88

99
function mixin(object) {
1010
Object.assign(object, Emitter.prototype);
11-
object._callbacks = {};
11+
object._callbacks = new Map();
1212
return object;
1313
}
1414

1515
Emitter.prototype.on = function (event, listener) {
16-
(this._callbacks['$' + event] = this._callbacks['$' + event] ?? []).push(listener);
16+
const callbacks = this._callbacks.get(event) ?? [];
17+
callbacks.push(listener);
18+
this._callbacks.set(event, callbacks);
1719
return this;
1820
};
1921

@@ -29,20 +31,17 @@ Emitter.prototype.once = function (event, listener) {
2931
};
3032

3133
Emitter.prototype.off = function (event, listener) {
32-
// No arguments: remove all callbacks
3334
if (event === undefined && listener === undefined) {
34-
this._callbacks = {};
35+
this._callbacks.clear();
3536
return this;
3637
}
3738

38-
// Only event specified: remove all listeners for that event
3939
if (listener === undefined) {
40-
delete this._callbacks['$' + event];
40+
this._callbacks.delete(event);
4141
return this;
4242
}
4343

44-
// Both event and listener specified: remove the specific listener
45-
const callbacks = this._callbacks['$' + event];
44+
const callbacks = this._callbacks.get(event);
4645
if (callbacks) {
4746
for (const [index, callback] of callbacks.entries()) {
4847
if (callback === listener || callback.fn === listener) {
@@ -51,20 +50,23 @@ Emitter.prototype.off = function (event, listener) {
5150
}
5251
}
5352

54-
// Clean up if no more listeners remain for the event
5553
if (callbacks.length === 0) {
56-
delete this._callbacks['$' + event];
54+
this._callbacks.delete(event);
55+
} else {
56+
this._callbacks.set(event, callbacks);
5757
}
5858
}
5959

6060
return this;
6161
};
6262

6363
Emitter.prototype.emit = function (event, ...arguments_) {
64-
let callbacks = this._callbacks['$' + event];
64+
const callbacks = this._callbacks.get(event);
6565
if (callbacks) {
66-
callbacks = [...callbacks];
67-
for (const callback of callbacks) {
66+
// Create a copy of the callbacks array to avoid issues if it's modified during iteration
67+
const callbacksCopy = [...callbacks];
68+
69+
for (const callback of callbacksCopy) {
6870
callback.apply(this, arguments_);
6971
}
7072
}
@@ -73,7 +75,7 @@ Emitter.prototype.emit = function (event, ...arguments_) {
7375
};
7476

7577
Emitter.prototype.listeners = function (event) {
76-
return this._callbacks['$' + event] ?? [];
78+
return this._callbacks.get(event) ?? [];
7779
};
7880

7981
Emitter.prototype.hasListeners = function (event) {

0 commit comments

Comments
 (0)
Please sign in to comment.