2017-03-29 15:37:30 +00:00
|
|
|
//TODO: This is deprecated because Embark extends EventEmitter now
|
2017-03-30 11:12:39 +00:00
|
|
|
let events = require('events');
|
|
|
|
|
|
|
|
class EventEmitter {
|
|
|
|
constructor(options) {
|
|
|
|
this.options = options;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EventEmitter.prototype = Object.create(events.EventEmitter.prototype);
|
2017-02-24 11:18:57 +00:00
|
|
|
|
|
|
|
module.exports = EventEmitter;
|