prebid-integration-monitor/node_modules/bare-events
2024-04-30 06:48:50 -06:00
..
lib initial commit 2024-04-30 06:48:50 -06:00
index.js initial commit 2024-04-30 06:48:50 -06:00
LICENSE initial commit 2024-04-30 06:48:50 -06:00
package.json initial commit 2024-04-30 06:48:50 -06:00
README.md initial commit 2024-04-30 06:48:50 -06:00

bare-events

Event emitters for JavaScript.

npm install bare-events

Usage

const EventEmitter = require('bare-events')

const e = new EventEmitter()

e.on('hello', function (data) {
  console.log(data)
})

e.emit('hello', 'world')

License

Apache-2.0