├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── ffi.js ├── handler.js ├── main.js ├── references.js ├── shared.js ├── transferable.js ├── utils.js └── worker.js └── test ├── index.html ├── shared-worker.js ├── todos ├── index.html └── shared-tasks.js └── worker.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/ffi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/ffi.js -------------------------------------------------------------------------------- /src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/handler.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/main.js -------------------------------------------------------------------------------- /src/references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/references.js -------------------------------------------------------------------------------- /src/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/shared.js -------------------------------------------------------------------------------- /src/transferable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/transferable.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/src/worker.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/test/index.html -------------------------------------------------------------------------------- /test/shared-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/test/shared-worker.js -------------------------------------------------------------------------------- /test/todos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/test/todos/index.html -------------------------------------------------------------------------------- /test/todos/shared-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/test/todos/shared-tasks.js -------------------------------------------------------------------------------- /test/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/accordant/HEAD/test/worker.js --------------------------------------------------------------------------------