mirror of
https://gitee.com/mafgwo/stackedit
synced 2024-11-16 03:32:40 +08:00
10 lines
162 B
JavaScript
10 lines
162 B
JavaScript
const store = {};
|
|
window.localStorage = {
|
|
getItem(key) {
|
|
return store[key] || null;
|
|
},
|
|
setItem(key, value) {
|
|
store[key] = value.toString();
|
|
},
|
|
};
|