├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .markdownlint.json ├── LICENSE ├── README.md ├── index.html ├── package.json ├── rollup.config.js ├── src └── y-indexeddb.js ├── tests ├── index.js └── y-indexeddb.tests.js └── tsconfig.json /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/y-indexeddb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/src/y-indexeddb.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/tests/index.js -------------------------------------------------------------------------------- /tests/y-indexeddb.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/tests/y-indexeddb.tests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-indexeddb/HEAD/tsconfig.json --------------------------------------------------------------------------------