event-target-fallback

1.0.0 • Public • Published

npm version Node.js CI

event-target-fallback

Forked from event-target-polyfill

A fallback for EventTarget (and Event), meant to run in older version of node or possibly IE 11, that has the most accurate set of characteristics of EventTarget that can be provided.

If you find this implementation can be improved, please submit a PR and ping me on Twitter via DM.

NOTE: If you are using Node 14 and higher, EventTarget is available directly via experimental features** MDN: EventTarget

Usage

import 'event-target-fallback';

const et = new EventTarget();

et.addEventListener('test', () => console.log('hit!'));

et.dispatchEvent(new Event('test'));

Development

This library has no dependencies. Even development dependencies. To test just run npm test. It runs a script, and if it finishes without error, the tests pass.

NOTE: run tests in node 14 or lower :)

/event-target-fallback/

    Package Sidebar

    Install

    npm i event-target-fallback

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    13.8 kB

    Total Files

    6

    Last publish

    Collaborators

    • mbeheshtis