Skip to content

Instantly share code, notes, and snippets.

class State {
constructor() {
this.nodes = {}
this.subscribers= [] // array of function
}
AddNode(nodeName) {
this.nodes[nodeName] = {}
this.emit()
}