Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
register(name: string, desc: string, fn: Function) {
this.store[name.toLowerCase()] = fn;
this.store[name.toLowerCase()].desc = desc;
this.alias = abbrev(Object.keys(this.store));
}
};