prettier/website/playground/storage.js

16 lines
264 B
JavaScript
Raw Normal View History

2018-04-12 00:22:03 +03:00
export function get(key) {
try {
return JSON.parse(window.localStorage.getItem(key));
} catch (_) {
// noop
}
}
export function set(key, value) {
try {
window.localStorage.setItem(key, JSON.stringify(value));
} catch (_) {
// noop
}
}