Ponyfill for CustomEvent
Install
$ npm install --save customevent
Usage
const customEvent = require('customevent');
const event = new customEvent('click', {
cancelable: true,
bubbles: false,
detail: {
foo: 'bar'
}
});
API
customEvent(typeArg, customEventInit)
Creates a custom event and returns an eventtypeArg
Type:string
A DOMString representing the name of the event.
customEventInit (optional)
Type:object