You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There may need to be separation between localStorage and sessionStorage calls, to avoid instantiating the same class with different options, like { persist : true }
For persistant storage
var store = c.store;
For session
var store = c.session;
Proposed API:
store.get("key");
store.set({ key : value });
store.has("key");
store.remove("key");
Include a helper lib to interact with local storage
The text was updated successfully, but these errors were encountered: