├── .DS_Store ├── .gitignore ├── README.md ├── package.json ├── src ├── .DS_Store ├── core │ ├── api │ │ ├── bus.ts │ │ ├── change.ts │ │ ├── clear.ts │ │ ├── expire.ts │ │ ├── getItem.ts │ │ ├── index.ts │ │ ├── removeItem.ts │ │ ├── setItem.ts │ │ ├── use.ts │ │ └── worker.ts │ ├── native-storage.ts │ └── web-storage.ts ├── global.d.ts ├── helper │ ├── const.ts │ ├── function.ts │ ├── index.ts │ └── types.ts ├── index.ts └── plugin │ ├── encrypt.ts │ ├── expire.ts │ ├── index.ts │ └── watch.ts ├── tsconfig.json ├── tsup.config.ts └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/core/api/bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/bus.ts -------------------------------------------------------------------------------- /src/core/api/change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/change.ts -------------------------------------------------------------------------------- /src/core/api/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/clear.ts -------------------------------------------------------------------------------- /src/core/api/expire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/expire.ts -------------------------------------------------------------------------------- /src/core/api/getItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/getItem.ts -------------------------------------------------------------------------------- /src/core/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/index.ts -------------------------------------------------------------------------------- /src/core/api/removeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/removeItem.ts -------------------------------------------------------------------------------- /src/core/api/setItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/setItem.ts -------------------------------------------------------------------------------- /src/core/api/use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/use.ts -------------------------------------------------------------------------------- /src/core/api/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/api/worker.ts -------------------------------------------------------------------------------- /src/core/native-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/native-storage.ts -------------------------------------------------------------------------------- /src/core/web-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/core/web-storage.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/helper/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/helper/const.ts -------------------------------------------------------------------------------- /src/helper/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/helper/function.ts -------------------------------------------------------------------------------- /src/helper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/helper/index.ts -------------------------------------------------------------------------------- /src/helper/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/helper/types.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/plugin/encrypt.ts -------------------------------------------------------------------------------- /src/plugin/expire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/plugin/expire.ts -------------------------------------------------------------------------------- /src/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/plugin/index.ts -------------------------------------------------------------------------------- /src/plugin/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/src/plugin/watch.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supanpanCn/web-localstorage-plus/HEAD/yarn.lock --------------------------------------------------------------------------------