(key: string)
| 30 | } |
| 31 | |
| 32 | public async get(key: string): Promise<string | null> { |
| 33 | this._logger.create(`get('${key}')`); |
| 34 | |
| 35 | key = this._prefix + key; |
| 36 | const item = await this._store.getItem(key); |
| 37 | return item; |
| 38 | } |
| 39 | |
| 40 | public async remove(key: string): Promise<string | null> { |
| 41 | this._logger.create(`remove('${key}')`); |