├── .gitignore ├── .travis.yml ├── CODEOWNERS ├── CONTRIBUTING ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── README.md ├── dist ├── bundle │ └── clooney.js ├── clooney.d.ts └── clooney.js ├── examples └── index.html ├── karma.conf.js ├── licenseheader.txt ├── package.json ├── renovate.json ├── rollup.config.js ├── src └── clooney.ts ├── tests ├── fixtures │ └── worker.js └── sometests.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | @surma 2 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/README.md -------------------------------------------------------------------------------- /dist/bundle/clooney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/dist/bundle/clooney.js -------------------------------------------------------------------------------- /dist/clooney.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/dist/clooney.d.ts -------------------------------------------------------------------------------- /dist/clooney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/dist/clooney.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/examples/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/karma.conf.js -------------------------------------------------------------------------------- /licenseheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/licenseheader.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [":library"] 3 | } 4 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/clooney.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/src/clooney.ts -------------------------------------------------------------------------------- /tests/fixtures/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/tests/fixtures/worker.js -------------------------------------------------------------------------------- /tests/sometests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/tests/sometests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/clooney/HEAD/tsconfig.json --------------------------------------------------------------------------------