(key: string)
| 19 | } |
| 20 | |
| 21 | getString(key: string): string | undefined { |
| 22 | const deleteSymbol = '~' |
| 23 | |
| 24 | return this._data.get(key) === deleteSymbol ? '' : this._data.get(key) |
| 25 | } |
| 26 | |
| 27 | getArray(key: string): string[] | undefined { |
| 28 | const deleteSymbol = '~' |
no outgoing calls
no test coverage detected