-
Andrej Rasevic authoredAndrej Rasevic authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
raise.js 245 B
const EventEmitter = require('events');
class RaiseEvent extends EventEmitter{
raise() {
//emit events
this.emit('Greeting');
this.emit('High Five', "Down Low", "too slow");
}
}
module.exports = RaiseEvent;