DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
|
raw
history blame
281 Bytes

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