├── .babelrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── __tests__ ├── execution.js ├── instance-methods.js └── static-methods.js ├── index.html ├── package.json ├── rollup.config.browser.js ├── rollup.config.node.js ├── serve └── node-dev.js ├── src ├── browser.js ├── index.js ├── leanFetch.js └── workerify.js ├── tonic-example.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/execution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/__tests__/execution.js -------------------------------------------------------------------------------- /__tests__/instance-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/__tests__/instance-methods.js -------------------------------------------------------------------------------- /__tests__/static-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/__tests__/static-methods.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/rollup.config.browser.js -------------------------------------------------------------------------------- /rollup.config.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/rollup.config.node.js -------------------------------------------------------------------------------- /serve/node-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/serve/node-dev.js -------------------------------------------------------------------------------- /src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/src/browser.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/src/index.js -------------------------------------------------------------------------------- /src/leanFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/src/leanFetch.js -------------------------------------------------------------------------------- /src/workerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/src/workerify.js -------------------------------------------------------------------------------- /tonic-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/tonic-example.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannickDot/Taskorama/HEAD/yarn.lock --------------------------------------------------------------------------------