├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── parallel.js └── sequence.js ├── index.js ├── package.json ├── screencast.yml └── tests └── index.test.js /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/README.md -------------------------------------------------------------------------------- /examples/parallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/examples/parallel.js -------------------------------------------------------------------------------- /examples/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/examples/sequence.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/package.json -------------------------------------------------------------------------------- /screencast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/screencast.yml -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/taskz/HEAD/tests/index.test.js --------------------------------------------------------------------------------