(storageKey)
| 121 | |
| 122 | export class Store { |
| 123 | constructor(storageKey) { |
| 124 | this.storageKey = storageKey; |
| 125 | this.map = new Map(); |
| 126 | this.initialized = false; |
| 127 | } |
| 128 | |
| 129 | async init() { |
| 130 | if (this.initalized) { |
nothing calls this directly
no outgoing calls
no test coverage detected