├── .editorconfig ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── angular.json ├── assets ├── new-way.png └── old-way.png ├── browserslist ├── package.json ├── projects ├── async-pipeline │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ │ ├── lib │ │ │ ├── debounce-time │ │ │ │ ├── debounce-time.module.ts │ │ │ │ └── debounce-time.pipe.ts │ │ │ ├── debounce │ │ │ │ ├── debounce.module.ts │ │ │ │ └── debounce.pipe.ts │ │ │ ├── delay │ │ │ │ ├── delay.module.ts │ │ │ │ └── delay.pipe.ts │ │ │ ├── distinct-until-changed │ │ │ │ ├── distinct-until-changed.module.ts │ │ │ │ └── distinct-until-changed.pipe.ts │ │ │ ├── first │ │ │ │ ├── first.module.ts │ │ │ │ └── first.pipe.ts │ │ │ ├── get │ │ │ │ ├── get.module.ts │ │ │ │ └── get.pipe.ts │ │ │ ├── index.ts │ │ │ ├── last │ │ │ │ ├── last.module.ts │ │ │ │ └── last.pipe.ts │ │ │ ├── length │ │ │ │ ├── length.module.ts │ │ │ │ └── length.pipe.ts │ │ │ ├── log │ │ │ │ ├── log.module.ts │ │ │ │ └── log.pipe.ts │ │ │ ├── map-to │ │ │ │ ├── map-to.module.ts │ │ │ │ └── map-to.pipe.ts │ │ │ ├── not │ │ │ │ ├── not.module.ts │ │ │ │ └── not.pipe.ts │ │ │ ├── pairwise │ │ │ │ ├── pairwise.module.ts │ │ │ │ └── pairwise.pipe.ts │ │ │ ├── skip-last │ │ │ │ ├── skip-last.module.ts │ │ │ │ └── skip-last.pipe.ts │ │ │ ├── skip-until │ │ │ │ ├── skip-until.module.ts │ │ │ │ └── skip-until.pipe.ts │ │ │ ├── skip-while │ │ │ │ ├── skip-while.module.ts │ │ │ │ └── skip-while.pipe.ts │ │ │ ├── skip │ │ │ │ ├── skip.module.ts │ │ │ │ └── skip.pipe.ts │ │ │ ├── take-last │ │ │ │ ├── take-last.module.ts │ │ │ │ └── take-last.pipe.ts │ │ │ ├── take-until │ │ │ │ ├── take-until.module.ts │ │ │ │ └── take-until.pipe.ts │ │ │ ├── take-while │ │ │ │ ├── take-while.module.ts │ │ │ │ └── take-while.pipe.ts │ │ │ ├── take │ │ │ │ ├── take.module.ts │ │ │ │ └── take.pipe.ts │ │ │ ├── throttle-time │ │ │ │ ├── throttle-time.module.ts │ │ │ │ └── throttle-time.pipe.ts │ │ │ └── throttle │ │ │ │ ├── throttle.module.ts │ │ │ │ └── throttle.pipe.ts │ │ ├── public-api.ts │ │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json └── demo │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ ├── app │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/angular.json -------------------------------------------------------------------------------- /assets/new-way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/assets/new-way.png -------------------------------------------------------------------------------- /assets/old-way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/assets/old-way.png -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/browserslist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/package.json -------------------------------------------------------------------------------- /projects/async-pipeline/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/karma.conf.js -------------------------------------------------------------------------------- /projects/async-pipeline/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/ng-package.json -------------------------------------------------------------------------------- /projects/async-pipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/package.json -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/debounce-time/debounce-time.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/debounce-time/debounce-time.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/debounce-time/debounce-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/debounce-time/debounce-time.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/debounce/debounce.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/debounce/debounce.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/debounce/debounce.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/debounce/debounce.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/delay/delay.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/delay/delay.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/delay/delay.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/delay/delay.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/distinct-until-changed/distinct-until-changed.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/distinct-until-changed/distinct-until-changed.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/distinct-until-changed/distinct-until-changed.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/distinct-until-changed/distinct-until-changed.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/first/first.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/first/first.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/first/first.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/first/first.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/get/get.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/get/get.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/get/get.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/get/get.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/index.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/last/last.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/last/last.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/last/last.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/last/last.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/length/length.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/length/length.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/length/length.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/length/length.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/log/log.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/log/log.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/log/log.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/log/log.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/map-to/map-to.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/map-to/map-to.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/map-to/map-to.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/map-to/map-to.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/not/not.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/not/not.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/not/not.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/not/not.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/pairwise/pairwise.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/pairwise/pairwise.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/pairwise/pairwise.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/pairwise/pairwise.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip-last/skip-last.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip-last/skip-last.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip-last/skip-last.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip-last/skip-last.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip-until/skip-until.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip-until/skip-until.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip-until/skip-until.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip-until/skip-until.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip-while/skip-while.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip-while/skip-while.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip-while/skip-while.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip-while/skip-while.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip/skip.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip/skip.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/skip/skip.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/skip/skip.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take-last/take-last.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take-last/take-last.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take-last/take-last.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take-last/take-last.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take-until/take-until.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take-until/take-until.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take-until/take-until.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take-until/take-until.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take-while/take-while.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take-while/take-while.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take-while/take-while.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take-while/take-while.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take/take.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take/take.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/take/take.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/take/take.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/throttle-time/throttle-time.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/throttle-time/throttle-time.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/throttle-time/throttle-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/throttle-time/throttle-time.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/throttle/throttle.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/throttle/throttle.module.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/lib/throttle/throttle.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/lib/throttle/throttle.pipe.ts -------------------------------------------------------------------------------- /projects/async-pipeline/src/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/index'; 2 | -------------------------------------------------------------------------------- /projects/async-pipeline/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/src/test.ts -------------------------------------------------------------------------------- /projects/async-pipeline/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/async-pipeline/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/async-pipeline/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/async-pipeline/tslint.json -------------------------------------------------------------------------------- /projects/demo/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/browserslist -------------------------------------------------------------------------------- /projects/demo/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/e2e/protractor.conf.js -------------------------------------------------------------------------------- /projects/demo/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /projects/demo/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/e2e/src/app.po.ts -------------------------------------------------------------------------------- /projects/demo/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/e2e/tsconfig.json -------------------------------------------------------------------------------- /projects/demo/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/karma.conf.js -------------------------------------------------------------------------------- /projects/demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/app/app.module.ts -------------------------------------------------------------------------------- /projects/demo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /projects/demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/favicon.ico -------------------------------------------------------------------------------- /projects/demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/index.html -------------------------------------------------------------------------------- /projects/demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/main.ts -------------------------------------------------------------------------------- /projects/demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/polyfills.ts -------------------------------------------------------------------------------- /projects/demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/styles.css -------------------------------------------------------------------------------- /projects/demo/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/src/test.ts -------------------------------------------------------------------------------- /projects/demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/tsconfig.app.json -------------------------------------------------------------------------------- /projects/demo/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/demo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/projects/demo/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibing/async-pipeline/HEAD/tslint.json --------------------------------------------------------------------------------