mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-11 05:06:47 +00:00
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
//TODO: This is deprecated because Embark extends EventEmitter now
|
|
let events = require('events');
|
|
|
|
class EventEmitter {
|
|
constructor(options) {
|
|
this.options = options;
|
|
}
|
|
}
|
|
|
|
EventEmitter.prototype = Object.create(events.EventEmitter.prototype);
|
|
|
|
module.exports = EventEmitter;
|