provider/node_modules/yaeti
Nik Dement'ev b2743b6469
fix: update lint
2020-11-06 14:38:38 +03:00
..
lib fix: update lint 2020-11-06 14:38:38 +03:00
.jscsrc fix: update lint 2020-11-06 14:38:38 +03:00
.jshintrc fix: update lint 2020-11-06 14:38:38 +03:00
.npmignore fix: update lint 2020-11-06 14:38:38 +03:00
LICENSE fix: update lint 2020-11-06 14:38:38 +03:00
README.md fix: update lint 2020-11-06 14:38:38 +03:00
gulpfile.js fix: update lint 2020-11-06 14:38:38 +03:00
index.js fix: update lint 2020-11-06 14:38:38 +03:00
package.json fix: update lint 2020-11-06 14:38:38 +03:00

README.md

yaeti

Yet Another EventTarget Implementation.

The library exposes both the EventTarget interface and the Event interface.

Installation

$ npm install yaeti --save

Usage

var yaeti = require('yaeti');


// Custom class we want to make an EventTarget.
function Foo() {
    // Make Foo an EventTarget.
    yaeti.EventTarget.call(this);
}

// Create an instance.
var foo = new Foo();

function listener1() {
    console.log('listener1');
}

function listener2() {
    console.log('listener2');
}
 
foo.addEventListener('bar', listener1);
foo.addEventListener('bar', listener2);
foo.removeEventListener('bar', listener1);

var event = new yaeti.Event('bar');

foo.dispatchEvent(event);


// Output:
// => "listener2"

API

yaeti.EventTarget interface

Implementation of the EventTarget interface.

  • Make a custom class inherit from EventTarget:
function Foo() {
    yaeti.EventTarget.call(this);
}
  • Make an existing object an EventTarget:
yaeti.EventTarget.call(obj);

The interface implements the addEventListener, removeEventListener and dispatchEvent methods as defined by the W3C.

listeners read-only property

Returns an object whose keys are configured event types (String) and whose values are an array of listeners (functions) for those event types.

yaeti.Event interface

Implementation of the Event interface.

NOTE: Just useful in Node (the browser already exposes the native Event interface).

var event = new yaeti.Event('bar');

Author

Iñaki Baz Castillo

License

MIT