├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cjs ├── index.js └── package.json ├── esm └── index.js ├── example.js ├── package.json └── test.cjs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | sandbox.js 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/esm/index.js -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/package.json -------------------------------------------------------------------------------- /test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/local-storage-proxy/HEAD/test.cjs --------------------------------------------------------------------------------