This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-02-13 23:56:20 -05:00
|
|
|
const EventEmitter = require('events')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Node extends EventEmitter {
|
|
|
|
|
constructor() {
|
|
|
|
|
|
|
|
|
|
}
|
2021-03-20 10:36:40 -04:00
|
|
|
|
|
|
|
|
static get Node() {
|
|
|
|
|
return Node;
|
|
|
|
|
}
|
2021-02-13 23:56:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-03-20 10:36:40 -04:00
|
|
|
module.exports = Node;
|