Skip to content

Instantly share code, notes, and snippets.

module.exports = class SubTrigger {
constructor() {
this.data = {};
this.exclusive = null;
}
addTrigger(triggerName) {
this.data[triggerName] = false;
}