(key, value)
| 115 | } |
| 116 | |
| 117 | _setItem(key, value) { |
| 118 | // unprotected version of setItem, for use by tryGetWebStore |
| 119 | this._storage.setItem(storePrefix + key, _stringify(value)); |
| 120 | } |
| 121 | /* |
| 122 | * In addition to the regular key->value to set, setItem takes |
| 123 | * dispatch as a parameter, so it can report OOM to devtools |
no test coverage detected