lbry-desktop/ui/js/utils.js
Alex Liebowitz e523906901 Make publishes appear immediately in My Files
Uses a client side cache to simulate entries in the file manager and
claims list.

Also adds new utility functions for using Local Storage.
2017-03-27 03:10:02 -04:00

16 lines
434 B
JavaScript

/**
* Thin wrapper around localStorage.getItem(). Parses JSON and returns undefined if the value
* is not set yet.
*/
export function getLocal(key) {
const itemRaw = localStorage.getItem(key);
return itemRaw === null ? undefined : JSON.parse(itemRaw);
}
/**
* Thin wrapper around localStorage.setItem(). Converts value to JSON.
*/
export function setLocal(key, value) {
localStorage.setItem(key, JSON.stringify(value));
}