├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── jest.config.js ├── package.json ├── src └── index.ts ├── test ├── useLocalStorage.test.tsx └── useLocalStorageSSR.test.tsx ├── tsconfig.json ├── uls-demo.gif └── uls-logo.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | coverage -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/useLocalStorage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/test/useLocalStorage.test.tsx -------------------------------------------------------------------------------- /test/useLocalStorageSSR.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/test/useLocalStorageSSR.test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uls-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/uls-demo.gif -------------------------------------------------------------------------------- /uls-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/use-local-storage/HEAD/uls-logo.png --------------------------------------------------------------------------------