Carbon/src/js/lsm.js

12 lines
185 B
JavaScript
Raw Normal View History

function get(name) {
2020-10-19 08:45:17 +00:00
return localStorage.getItem(name);
}
function set(name, value) {
2020-10-19 08:45:17 +00:00
return localStorage.setItem(name, value);
}
2020-10-19 08:45:17 +00:00
window.lsm = { get, set };
2020-10-19 08:45:17 +00:00
export { get, set };