├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── catalog-info.yaml ├── changelog.md ├── karma.conf.js ├── package.json ├── readme.md ├── src ├── __module.d.ts ├── __tests.ts ├── __tests__ │ ├── benchmark.spec.ts │ ├── collection.spec.ts │ ├── database.spec.ts │ └── utils.ts ├── collection.ts ├── database.ts └── index.ts ├── test ├── collection.mock.ts ├── database.mock.ts └── index.ts ├── tsconfig.json └── tsconfig.spec.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/LICENSE -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/changelog.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/readme.md -------------------------------------------------------------------------------- /src/__module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/__module.d.ts -------------------------------------------------------------------------------- /src/__tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/__tests.ts -------------------------------------------------------------------------------- /src/__tests__/benchmark.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/__tests__/benchmark.spec.ts -------------------------------------------------------------------------------- /src/__tests__/collection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/__tests__/collection.spec.ts -------------------------------------------------------------------------------- /src/__tests__/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/__tests__/database.spec.ts -------------------------------------------------------------------------------- /src/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/__tests__/utils.ts -------------------------------------------------------------------------------- /src/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/collection.ts -------------------------------------------------------------------------------- /src/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/database.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/collection.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/test/collection.mock.ts -------------------------------------------------------------------------------- /test/database.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/test/database.mock.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creately/rxdata/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------