├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── SECURITY.md ├── dist ├── TsIndexDb.d.ts ├── TsIndexDb.js ├── index.d.ts └── index.js ├── karma.conf.js ├── libs ├── TsIndexDb.ts └── index.ts ├── package.json ├── test └── test.js ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dist/TsIndexDb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/dist/TsIndexDb.d.ts -------------------------------------------------------------------------------- /dist/TsIndexDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/dist/TsIndexDb.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/dist/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/karma.conf.js -------------------------------------------------------------------------------- /libs/TsIndexDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/libs/TsIndexDb.ts -------------------------------------------------------------------------------- /libs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/libs/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcbo/ts-indexdb/HEAD/yarn.lock --------------------------------------------------------------------------------