Proxy to the localStorage setItem value method * @param {string} key - LocalStorage key to set * @param {string} value - LocalStorage value to set * @returns {undefined}
(key, value)
| 171 | * @returns {undefined} |
| 172 | */ |
| 173 | _setItem(key, value) { |
| 174 | this.localStorage().setItem(key, value); |
| 175 | } |
| 176 | |
| 177 | /** Proxy to the localStorage removeItem method |
| 178 | * @param {string} key - LocalStorage key to remove |
no test coverage detected