27 lines
420 B
JavaScript
27 lines
420 B
JavaScript
|
'use strict'
|
||
|
|
||
|
class Event {
|
||
|
constructor () {
|
||
|
this.listeners = []
|
||
|
}
|
||
|
|
||
|
addListener (callback) {
|
||
|
this.listeners.push(callback)
|
||
|
}
|
||
|
|
||
|
removeListener (callback) {
|
||
|
const index = this.listeners.indexOf(callback)
|
||
|
if (index !== -1) {
|
||
|
this.listeners.splice(index, 1)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
emit (...args) {
|
||
|
for (const listener of this.listeners) {
|
||
|
listener(...args)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Event
|