├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── indexed-cache.esm.min.js ├── indexed-cache.legacy.min.js └── indexed-cache.min.js ├── package.json ├── rollup.config.js ├── src ├── index.js ├── indexeddb-getall-polyfill.js └── polyfills.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/README.md -------------------------------------------------------------------------------- /dist/indexed-cache.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/dist/indexed-cache.esm.min.js -------------------------------------------------------------------------------- /dist/indexed-cache.legacy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/dist/indexed-cache.legacy.min.js -------------------------------------------------------------------------------- /dist/indexed-cache.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/dist/indexed-cache.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/src/index.js -------------------------------------------------------------------------------- /src/indexeddb-getall-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/src/indexeddb-getall-polyfill.js -------------------------------------------------------------------------------- /src/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/src/polyfills.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/indexed-cache/HEAD/yarn.lock --------------------------------------------------------------------------------