UNPKG

@qiwi/cyclone

Version:

"State machine" for basic purposes

16 lines (15 loc) 258 B
export class Registry { store; constructor() { this.store = {}; } get(key) { return this.store[key]; } add(key, value) { this.store[key] = value; } remove(key) { delete this.store[key]; } }