$ cnpm install emitter-only
Extend event emitters to allow registering listeners only once.
Install with npm
$ npm i emitter-only --save
var only = require('emitter-only');
Only register an event listener one time for the given name/event combo.
Params
name {String}: Name to specify this is a unique listener.event {String}: Event name to pass to the emitter on method.fn {Function}: Event listener function to pass to the emitter on method.returns {Object}: Return this for chaining.Example
Emitter.prototype.only = function () {
return only.apply(this, arguments);
};
var emitter = new Emitter();
emitter.only('one-time', 'foo', function (msg) {
console.log('foo 1', msg);
});
emitter.only('one-time', 'foo', function (msg) {
console.log('foo 2', msg);
});
emitter.emit('foo', 'bar');
//=> 'foo bar'
component-emitter: Event emitter | homepage
Install dev dependencies:
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Brian Woodward
Copyright © 2015 Brian Woodward Released under the MIT license.
This file was generated by verb-cli on September 23, 2015.
Copyright 2013 - present © cnpmjs.org | Home |