* getItem * @param k String key to get the value for * @return The stored value, or `null` if not found
(k)
| 93 | * @return The stored value, or `null` if not found |
| 94 | */ |
| 95 | getItem(k) { |
| 96 | return this._storage.getItem(k); |
| 97 | } |
| 98 | |
| 99 | |
| 100 | /** |
no outgoing calls
no test coverage detected