(key: string)
| 38 | } |
| 39 | |
| 40 | public async remove(key: string): Promise<string | null> { |
| 41 | this._logger.create(`remove('${key}')`); |
| 42 | |
| 43 | key = this._prefix + key; |
| 44 | const item = await this._store.getItem(key); |
| 45 | await this._store.removeItem(key); |
| 46 | return item; |
| 47 | } |
| 48 | |
| 49 | public async getAllKeys(): Promise<string[]> { |
| 50 | this._logger.create("getAllKeys"); |
nothing calls this directly
no test coverage detected