new-event-polyfill
Version:
new Event() polyfill
25 lines (17 loc) • 643 B
Markdown
> Based on [mdn customEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent#Polyfill) polyfill.
```
npm install new-event-polyfill --save
yarn new-event-polyfill
```
```js
// (ES6 Modules)
import 'new-event-polyfill';
// (CommonJS)
require('new-event-polyfill');
```
This Repo is based on the [mdn-polyfills](https://github.com/msn0/mdn-polyfills) repo from [Michał Jezierski](https://github.com/msn0)
The polyfill is based on the pollyfill from [developer.mozilla.org](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent#Polyfill)