Carbon/src/js/lsm.js

12 lines
185 B
JavaScript
Raw Normal View History

function get(name) {
return localStorage.getItem(name)
}
function set(name, value) {
return localStorage.setItem(name, value)
}
window.lsm = {get, set}
2020-10-23 14:15:14 +00:00
module.exports = {get, set}