app-storage
app-storage copied to clipboard
In setStoredValue: function(path, value) value is not used
Description
Why In setStoredValue: function(path, value) the value argument is not used.
setStoredValue: function(path, value) {
if (this.key != null) {
try {
this.__setStorageValue(this.key, this.data);
} catch (e) {
return Promise.reject(e);
}
this.fire('app-local-storage-changed', this, {node: window.top});
}