mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 18:00:00 +00:00
25 lines
373 B
JavaScript
25 lines
373 B
JavaScript
|
|
/**
|
|
* Module exports.
|
|
*/
|
|
|
|
module.exports = on;
|
|
|
|
/**
|
|
* Helper for subscriptions.
|
|
*
|
|
* @param {Object|EventEmitter} obj with `Emitter` mixin or `EventEmitter`
|
|
* @param {String} event name
|
|
* @param {Function} callback
|
|
* @api public
|
|
*/
|
|
|
|
function on (obj, ev, fn) {
|
|
obj.on(ev, fn);
|
|
return {
|
|
destroy: function () {
|
|
obj.removeListener(ev, fn);
|
|
}
|
|
};
|
|
}
|