初始化仓库

This commit is contained in:
yiqiuyang
2025-09-10 00:13:57 +08:00
commit 17180ec339
417 changed files with 285450 additions and 0 deletions

View File

@ -0,0 +1,6 @@
function setStorage(item, value) {
return localStorage.setItem(item, JSON.stringify(value));
}
function getStorage(item) {
return JSON.parse(localStorage.getItem(item));
}