├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── dev.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json └── test ├── arguments.js ├── callbacks.js ├── child_processes.js ├── observables.js ├── promises.js ├── streams.js ├── streamx.js └── types ├── callback.ts ├── child_processes.ts ├── observables.ts ├── promises.ts ├── streams.ts ├── tsconfig.json └── various.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "gulp" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | .nyc_output/ 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/package.json -------------------------------------------------------------------------------- /test/arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/arguments.js -------------------------------------------------------------------------------- /test/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/callbacks.js -------------------------------------------------------------------------------- /test/child_processes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/child_processes.js -------------------------------------------------------------------------------- /test/observables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/observables.js -------------------------------------------------------------------------------- /test/promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/promises.js -------------------------------------------------------------------------------- /test/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/streams.js -------------------------------------------------------------------------------- /test/streamx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/streamx.js -------------------------------------------------------------------------------- /test/types/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/callback.ts -------------------------------------------------------------------------------- /test/types/child_processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/child_processes.ts -------------------------------------------------------------------------------- /test/types/observables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/observables.ts -------------------------------------------------------------------------------- /test/types/promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/promises.ts -------------------------------------------------------------------------------- /test/types/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/streams.ts -------------------------------------------------------------------------------- /test/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/tsconfig.json -------------------------------------------------------------------------------- /test/types/various.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/async-done/HEAD/test/types/various.ts --------------------------------------------------------------------------------