Files
PicList/src/renderer/utils/LS.js
2018-12-17 23:56:11 +08:00

16 lines
270 B
JavaScript

class LS {
get (name) {
if (localStorage.getItem(name)) {
return JSON.parse(localStorage.getItem(name))
} else {
return {}
}
}
set (name, value) {
return localStorage.setItem(name, JSON.stringify(value))
}
}
export default new LS()