mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-23 13:48:49 +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;
|