xiaokuaisong-xiaochengxu/uniapp04/node_modules/socket.io-client/build/cjs/on.js

10 lines
210 B
JavaScript
Raw Normal View History

2025-04-11 06:42:29 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.on = on;
function on(obj, ev, fn) {
obj.on(ev, fn);
return function subDestroy() {
obj.off(ev, fn);
};
}