mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
export function on(obj, ev, fn) {
|
|
obj.on(ev, fn);
|
|
return {
|
|
destroy: function () {
|
|
obj.removeListener(ev, fn);
|
|
},
|
|
};
|
|
}
|