├── .c8rc.json ├── .editorconfig ├── .gitattributes ├── .github ├── renovate.json └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── LICENSE ├── README.md ├── benchmarks ├── README.md ├── package.json ├── src │ ├── async.ts │ ├── sync.ts │ ├── tests │ │ ├── iter-ops.ts │ │ └── rxjs.ts │ └── tsconfig.json └── yarn.lock ├── cspell.config.yml ├── eslint.config.js ├── package.json ├── project-dictionary.txt ├── rollup.config.ts ├── src ├── helpers.ts ├── index.ts ├── ops │ ├── aggregate.ts │ ├── async │ │ ├── README.md │ │ ├── delay.ts │ │ ├── throttle.ts │ │ ├── wait-race.ts │ │ └── wait.ts │ ├── catch-error.ts │ ├── concat.ts │ ├── concurrency-fork.ts │ ├── consume.ts │ ├── count.ts │ ├── default-empty.ts │ ├── distinct.ts │ ├── drain.ts │ ├── empty.ts │ ├── every.ts │ ├── filter.ts │ ├── first.ts │ ├── flat-map.ts │ ├── flat.ts │ ├── index-by.ts │ ├── is-empty.ts │ ├── last.ts │ ├── map.ts │ ├── on-end.ts │ ├── page.ts │ ├── reduce.ts │ ├── repeat.ts │ ├── retry.ts │ ├── skip-until.ts │ ├── skip-while.ts │ ├── skip.ts │ ├── some.ts │ ├── split.ts │ ├── spread.ts │ ├── take-last.ts │ ├── take-until.ts │ ├── take-while.ts │ ├── take.ts │ ├── tap.ts │ ├── timeout.ts │ ├── timing.ts │ ├── to-array.ts │ └── zip.ts ├── pipe.ts ├── typeguards.ts ├── types │ ├── common.ts │ ├── index.ts │ └── utils.ts └── utils.ts ├── test ├── header.ts ├── helpers.spec.ts ├── ops │ ├── aggregate │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── catch-error │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── concat │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── concurrency-fork │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── consume │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── count │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── default-empty │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── delay │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ └── async.test-d.ts │ ├── distinct │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── drain │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── empty │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── every │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── filter │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── first │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── flat-map │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── flat │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── index-by │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── is-empty │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── last │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── map │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── on-end │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── page │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── reduce │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── repeat │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── retry │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ └── async.test-d.ts │ ├── skip-until │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── skip-while │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── skip │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── some │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── split │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── spread │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── take-last │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── take-until │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── take-while │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── take │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── tap │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── throttle │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ └── async.test-d.ts │ ├── timeout │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── timing │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ └── async.test-d.ts │ ├── to-array │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ ├── async.test-d.ts │ │ │ └── sync.test-d.ts │ ├── wait-race │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ └── async.test-d.ts │ ├── wait │ │ ├── async.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ │ └── async.test-d.ts │ └── zip │ │ ├── async.ts │ │ ├── header.ts │ │ ├── index.spec.ts │ │ ├── sync.ts │ │ └── types │ │ ├── async.test-d.ts │ │ └── sync.test-d.ts ├── pipe │ ├── async.ts │ ├── dynamic.ts │ ├── index.spec.ts │ ├── sync.ts │ └── types │ │ ├── async.test-d.ts │ │ └── sync.test-d.ts ├── typeguards │ ├── index.spec.ts │ └── isIteratorResult.ts └── utils.spec.ts ├── tsconfig.base.json ├── tsconfig.build.json ├── tsconfig.build.web.json ├── tsconfig.json ├── tsconfig.test.json ├── typedoc.css ├── typedoc.json └── yarn.lock /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /.nyc_output/ 2 | /dist/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/package.json -------------------------------------------------------------------------------- /benchmarks/src/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/src/async.ts -------------------------------------------------------------------------------- /benchmarks/src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/src/sync.ts -------------------------------------------------------------------------------- /benchmarks/src/tests/iter-ops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/src/tests/iter-ops.ts -------------------------------------------------------------------------------- /benchmarks/src/tests/rxjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/src/tests/rxjs.ts -------------------------------------------------------------------------------- /benchmarks/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/src/tsconfig.json -------------------------------------------------------------------------------- /benchmarks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/benchmarks/yarn.lock -------------------------------------------------------------------------------- /cspell.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/cspell.config.yml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/package.json -------------------------------------------------------------------------------- /project-dictionary.txt: -------------------------------------------------------------------------------- 1 | Rebecca 2 | Tomilov 3 | tseslint 4 | Vitaly 5 | YSNP 6 | -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/ops/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/aggregate.ts -------------------------------------------------------------------------------- /src/ops/async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/async/README.md -------------------------------------------------------------------------------- /src/ops/async/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/async/delay.ts -------------------------------------------------------------------------------- /src/ops/async/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/async/throttle.ts -------------------------------------------------------------------------------- /src/ops/async/wait-race.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/async/wait-race.ts -------------------------------------------------------------------------------- /src/ops/async/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/async/wait.ts -------------------------------------------------------------------------------- /src/ops/catch-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/catch-error.ts -------------------------------------------------------------------------------- /src/ops/concat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/concat.ts -------------------------------------------------------------------------------- /src/ops/concurrency-fork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/concurrency-fork.ts -------------------------------------------------------------------------------- /src/ops/consume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/consume.ts -------------------------------------------------------------------------------- /src/ops/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/count.ts -------------------------------------------------------------------------------- /src/ops/default-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/default-empty.ts -------------------------------------------------------------------------------- /src/ops/distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/distinct.ts -------------------------------------------------------------------------------- /src/ops/drain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/drain.ts -------------------------------------------------------------------------------- /src/ops/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/empty.ts -------------------------------------------------------------------------------- /src/ops/every.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/every.ts -------------------------------------------------------------------------------- /src/ops/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/filter.ts -------------------------------------------------------------------------------- /src/ops/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/first.ts -------------------------------------------------------------------------------- /src/ops/flat-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/flat-map.ts -------------------------------------------------------------------------------- /src/ops/flat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/flat.ts -------------------------------------------------------------------------------- /src/ops/index-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/index-by.ts -------------------------------------------------------------------------------- /src/ops/is-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/is-empty.ts -------------------------------------------------------------------------------- /src/ops/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/last.ts -------------------------------------------------------------------------------- /src/ops/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/map.ts -------------------------------------------------------------------------------- /src/ops/on-end.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/on-end.ts -------------------------------------------------------------------------------- /src/ops/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/page.ts -------------------------------------------------------------------------------- /src/ops/reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/reduce.ts -------------------------------------------------------------------------------- /src/ops/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/repeat.ts -------------------------------------------------------------------------------- /src/ops/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/retry.ts -------------------------------------------------------------------------------- /src/ops/skip-until.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/skip-until.ts -------------------------------------------------------------------------------- /src/ops/skip-while.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/skip-while.ts -------------------------------------------------------------------------------- /src/ops/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/skip.ts -------------------------------------------------------------------------------- /src/ops/some.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/some.ts -------------------------------------------------------------------------------- /src/ops/split.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/split.ts -------------------------------------------------------------------------------- /src/ops/spread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/spread.ts -------------------------------------------------------------------------------- /src/ops/take-last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/take-last.ts -------------------------------------------------------------------------------- /src/ops/take-until.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/take-until.ts -------------------------------------------------------------------------------- /src/ops/take-while.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/take-while.ts -------------------------------------------------------------------------------- /src/ops/take.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/take.ts -------------------------------------------------------------------------------- /src/ops/tap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/tap.ts -------------------------------------------------------------------------------- /src/ops/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/timeout.ts -------------------------------------------------------------------------------- /src/ops/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/timing.ts -------------------------------------------------------------------------------- /src/ops/to-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/to-array.ts -------------------------------------------------------------------------------- /src/ops/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/ops/zip.ts -------------------------------------------------------------------------------- /src/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/pipe.ts -------------------------------------------------------------------------------- /src/typeguards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/typeguards.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/types/utils.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/header.ts -------------------------------------------------------------------------------- /test/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/helpers.spec.ts -------------------------------------------------------------------------------- /test/ops/aggregate/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/aggregate/async.ts -------------------------------------------------------------------------------- /test/ops/aggregate/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/aggregate/index.spec.ts -------------------------------------------------------------------------------- /test/ops/aggregate/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/aggregate/sync.ts -------------------------------------------------------------------------------- /test/ops/aggregate/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/aggregate/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/aggregate/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/aggregate/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/catch-error/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/catch-error/async.ts -------------------------------------------------------------------------------- /test/ops/catch-error/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/catch-error/index.spec.ts -------------------------------------------------------------------------------- /test/ops/catch-error/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/catch-error/sync.ts -------------------------------------------------------------------------------- /test/ops/catch-error/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/catch-error/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/catch-error/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/catch-error/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/concat/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concat/async.ts -------------------------------------------------------------------------------- /test/ops/concat/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concat/index.spec.ts -------------------------------------------------------------------------------- /test/ops/concat/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concat/sync.ts -------------------------------------------------------------------------------- /test/ops/concat/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concat/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/concat/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concat/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/concurrency-fork/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concurrency-fork/async.ts -------------------------------------------------------------------------------- /test/ops/concurrency-fork/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concurrency-fork/index.spec.ts -------------------------------------------------------------------------------- /test/ops/concurrency-fork/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concurrency-fork/sync.ts -------------------------------------------------------------------------------- /test/ops/concurrency-fork/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concurrency-fork/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/concurrency-fork/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/concurrency-fork/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/consume/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/consume/async.ts -------------------------------------------------------------------------------- /test/ops/consume/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/consume/index.spec.ts -------------------------------------------------------------------------------- /test/ops/consume/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/consume/sync.ts -------------------------------------------------------------------------------- /test/ops/consume/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/consume/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/consume/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/consume/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/count/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/count/async.ts -------------------------------------------------------------------------------- /test/ops/count/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/count/index.spec.ts -------------------------------------------------------------------------------- /test/ops/count/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/count/sync.ts -------------------------------------------------------------------------------- /test/ops/count/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/count/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/count/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/count/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/default-empty/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/default-empty/async.ts -------------------------------------------------------------------------------- /test/ops/default-empty/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/default-empty/index.spec.ts -------------------------------------------------------------------------------- /test/ops/default-empty/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/default-empty/sync.ts -------------------------------------------------------------------------------- /test/ops/default-empty/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/default-empty/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/default-empty/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/default-empty/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/delay/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/delay/async.ts -------------------------------------------------------------------------------- /test/ops/delay/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/delay/index.spec.ts -------------------------------------------------------------------------------- /test/ops/delay/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/delay/sync.ts -------------------------------------------------------------------------------- /test/ops/delay/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/delay/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/distinct/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/distinct/async.ts -------------------------------------------------------------------------------- /test/ops/distinct/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/distinct/index.spec.ts -------------------------------------------------------------------------------- /test/ops/distinct/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/distinct/sync.ts -------------------------------------------------------------------------------- /test/ops/distinct/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/distinct/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/distinct/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/distinct/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/drain/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/drain/async.ts -------------------------------------------------------------------------------- /test/ops/drain/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/drain/index.spec.ts -------------------------------------------------------------------------------- /test/ops/drain/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/drain/sync.ts -------------------------------------------------------------------------------- /test/ops/drain/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/drain/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/drain/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/drain/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/empty/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/empty/async.ts -------------------------------------------------------------------------------- /test/ops/empty/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/empty/index.spec.ts -------------------------------------------------------------------------------- /test/ops/empty/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/empty/sync.ts -------------------------------------------------------------------------------- /test/ops/empty/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/empty/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/empty/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/empty/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/every/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/every/async.ts -------------------------------------------------------------------------------- /test/ops/every/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/every/index.spec.ts -------------------------------------------------------------------------------- /test/ops/every/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/every/sync.ts -------------------------------------------------------------------------------- /test/ops/every/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/every/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/every/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/every/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/filter/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/filter/async.ts -------------------------------------------------------------------------------- /test/ops/filter/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/filter/index.spec.ts -------------------------------------------------------------------------------- /test/ops/filter/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/filter/sync.ts -------------------------------------------------------------------------------- /test/ops/filter/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/filter/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/filter/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/filter/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/first/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/first/async.ts -------------------------------------------------------------------------------- /test/ops/first/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/first/index.spec.ts -------------------------------------------------------------------------------- /test/ops/first/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/first/sync.ts -------------------------------------------------------------------------------- /test/ops/first/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/first/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/first/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/first/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/flat-map/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat-map/async.ts -------------------------------------------------------------------------------- /test/ops/flat-map/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat-map/index.spec.ts -------------------------------------------------------------------------------- /test/ops/flat-map/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat-map/sync.ts -------------------------------------------------------------------------------- /test/ops/flat-map/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat-map/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/flat-map/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat-map/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/flat/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat/async.ts -------------------------------------------------------------------------------- /test/ops/flat/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat/index.spec.ts -------------------------------------------------------------------------------- /test/ops/flat/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat/sync.ts -------------------------------------------------------------------------------- /test/ops/flat/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/flat/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/flat/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/index-by/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/index-by/async.ts -------------------------------------------------------------------------------- /test/ops/index-by/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/index-by/index.spec.ts -------------------------------------------------------------------------------- /test/ops/index-by/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/index-by/sync.ts -------------------------------------------------------------------------------- /test/ops/index-by/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/index-by/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/index-by/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/index-by/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/is-empty/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/is-empty/async.ts -------------------------------------------------------------------------------- /test/ops/is-empty/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/is-empty/index.spec.ts -------------------------------------------------------------------------------- /test/ops/is-empty/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/is-empty/sync.ts -------------------------------------------------------------------------------- /test/ops/is-empty/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/is-empty/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/is-empty/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/is-empty/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/last/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/last/async.ts -------------------------------------------------------------------------------- /test/ops/last/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/last/index.spec.ts -------------------------------------------------------------------------------- /test/ops/last/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/last/sync.ts -------------------------------------------------------------------------------- /test/ops/last/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/last/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/last/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/last/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/map/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/map/async.ts -------------------------------------------------------------------------------- /test/ops/map/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/map/index.spec.ts -------------------------------------------------------------------------------- /test/ops/map/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/map/sync.ts -------------------------------------------------------------------------------- /test/ops/map/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/map/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/map/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/map/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/on-end/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/on-end/async.ts -------------------------------------------------------------------------------- /test/ops/on-end/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/on-end/index.spec.ts -------------------------------------------------------------------------------- /test/ops/on-end/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/on-end/sync.ts -------------------------------------------------------------------------------- /test/ops/on-end/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/on-end/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/on-end/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/on-end/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/page/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/page/async.ts -------------------------------------------------------------------------------- /test/ops/page/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/page/index.spec.ts -------------------------------------------------------------------------------- /test/ops/page/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/page/sync.ts -------------------------------------------------------------------------------- /test/ops/page/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/page/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/page/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/page/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/reduce/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/reduce/async.ts -------------------------------------------------------------------------------- /test/ops/reduce/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/reduce/index.spec.ts -------------------------------------------------------------------------------- /test/ops/reduce/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/reduce/sync.ts -------------------------------------------------------------------------------- /test/ops/reduce/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/reduce/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/reduce/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/reduce/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/repeat/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/repeat/async.ts -------------------------------------------------------------------------------- /test/ops/repeat/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/repeat/index.spec.ts -------------------------------------------------------------------------------- /test/ops/repeat/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/repeat/sync.ts -------------------------------------------------------------------------------- /test/ops/repeat/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/repeat/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/repeat/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/repeat/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/retry/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/retry/async.ts -------------------------------------------------------------------------------- /test/ops/retry/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/retry/index.spec.ts -------------------------------------------------------------------------------- /test/ops/retry/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/retry/sync.ts -------------------------------------------------------------------------------- /test/ops/retry/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/retry/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/skip-until/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-until/async.ts -------------------------------------------------------------------------------- /test/ops/skip-until/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-until/index.spec.ts -------------------------------------------------------------------------------- /test/ops/skip-until/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-until/sync.ts -------------------------------------------------------------------------------- /test/ops/skip-until/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-until/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/skip-until/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-until/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/skip-while/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-while/async.ts -------------------------------------------------------------------------------- /test/ops/skip-while/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-while/index.spec.ts -------------------------------------------------------------------------------- /test/ops/skip-while/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-while/sync.ts -------------------------------------------------------------------------------- /test/ops/skip-while/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-while/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/skip-while/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip-while/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/skip/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip/async.ts -------------------------------------------------------------------------------- /test/ops/skip/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip/index.spec.ts -------------------------------------------------------------------------------- /test/ops/skip/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip/sync.ts -------------------------------------------------------------------------------- /test/ops/skip/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/skip/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/skip/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/some/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/some/async.ts -------------------------------------------------------------------------------- /test/ops/some/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/some/index.spec.ts -------------------------------------------------------------------------------- /test/ops/some/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/some/sync.ts -------------------------------------------------------------------------------- /test/ops/some/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/some/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/some/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/some/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/split/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/split/async.ts -------------------------------------------------------------------------------- /test/ops/split/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/split/index.spec.ts -------------------------------------------------------------------------------- /test/ops/split/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/split/sync.ts -------------------------------------------------------------------------------- /test/ops/split/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/split/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/split/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/split/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/spread/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/spread/async.ts -------------------------------------------------------------------------------- /test/ops/spread/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/spread/index.spec.ts -------------------------------------------------------------------------------- /test/ops/spread/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/spread/sync.ts -------------------------------------------------------------------------------- /test/ops/spread/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/spread/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/spread/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/spread/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/take-last/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-last/async.ts -------------------------------------------------------------------------------- /test/ops/take-last/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-last/index.spec.ts -------------------------------------------------------------------------------- /test/ops/take-last/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-last/sync.ts -------------------------------------------------------------------------------- /test/ops/take-last/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-last/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/take-last/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-last/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/take-until/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-until/async.ts -------------------------------------------------------------------------------- /test/ops/take-until/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-until/index.spec.ts -------------------------------------------------------------------------------- /test/ops/take-until/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-until/sync.ts -------------------------------------------------------------------------------- /test/ops/take-until/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-until/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/take-until/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-until/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/take-while/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-while/async.ts -------------------------------------------------------------------------------- /test/ops/take-while/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-while/index.spec.ts -------------------------------------------------------------------------------- /test/ops/take-while/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-while/sync.ts -------------------------------------------------------------------------------- /test/ops/take-while/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-while/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/take-while/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take-while/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/take/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take/async.ts -------------------------------------------------------------------------------- /test/ops/take/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take/index.spec.ts -------------------------------------------------------------------------------- /test/ops/take/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take/sync.ts -------------------------------------------------------------------------------- /test/ops/take/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/take/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/take/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/tap/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/tap/async.ts -------------------------------------------------------------------------------- /test/ops/tap/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/tap/index.spec.ts -------------------------------------------------------------------------------- /test/ops/tap/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/tap/sync.ts -------------------------------------------------------------------------------- /test/ops/tap/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/tap/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/tap/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/tap/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/throttle/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/throttle/async.ts -------------------------------------------------------------------------------- /test/ops/throttle/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/throttle/index.spec.ts -------------------------------------------------------------------------------- /test/ops/throttle/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/throttle/sync.ts -------------------------------------------------------------------------------- /test/ops/throttle/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/throttle/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/timeout/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timeout/async.ts -------------------------------------------------------------------------------- /test/ops/timeout/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timeout/index.spec.ts -------------------------------------------------------------------------------- /test/ops/timeout/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timeout/sync.ts -------------------------------------------------------------------------------- /test/ops/timeout/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timeout/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/timeout/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timeout/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/timing/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timing/async.ts -------------------------------------------------------------------------------- /test/ops/timing/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timing/index.spec.ts -------------------------------------------------------------------------------- /test/ops/timing/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timing/sync.ts -------------------------------------------------------------------------------- /test/ops/timing/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/timing/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/to-array/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/to-array/async.ts -------------------------------------------------------------------------------- /test/ops/to-array/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/to-array/index.spec.ts -------------------------------------------------------------------------------- /test/ops/to-array/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/to-array/sync.ts -------------------------------------------------------------------------------- /test/ops/to-array/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/to-array/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/to-array/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/to-array/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/ops/wait-race/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait-race/async.ts -------------------------------------------------------------------------------- /test/ops/wait-race/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait-race/index.spec.ts -------------------------------------------------------------------------------- /test/ops/wait-race/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait-race/sync.ts -------------------------------------------------------------------------------- /test/ops/wait-race/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait-race/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/wait/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait/async.ts -------------------------------------------------------------------------------- /test/ops/wait/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait/index.spec.ts -------------------------------------------------------------------------------- /test/ops/wait/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait/sync.ts -------------------------------------------------------------------------------- /test/ops/wait/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/wait/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/zip/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/zip/async.ts -------------------------------------------------------------------------------- /test/ops/zip/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/zip/header.ts -------------------------------------------------------------------------------- /test/ops/zip/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/zip/index.spec.ts -------------------------------------------------------------------------------- /test/ops/zip/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/zip/sync.ts -------------------------------------------------------------------------------- /test/ops/zip/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/zip/types/async.test-d.ts -------------------------------------------------------------------------------- /test/ops/zip/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/ops/zip/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/pipe/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/pipe/async.ts -------------------------------------------------------------------------------- /test/pipe/dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/pipe/dynamic.ts -------------------------------------------------------------------------------- /test/pipe/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/pipe/index.spec.ts -------------------------------------------------------------------------------- /test/pipe/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/pipe/sync.ts -------------------------------------------------------------------------------- /test/pipe/types/async.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/pipe/types/async.test-d.ts -------------------------------------------------------------------------------- /test/pipe/types/sync.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/pipe/types/sync.test-d.ts -------------------------------------------------------------------------------- /test/typeguards/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/typeguards/index.spec.ts -------------------------------------------------------------------------------- /test/typeguards/isIteratorResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/typeguards/isIteratorResult.ts -------------------------------------------------------------------------------- /test/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/test/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.build.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/tsconfig.build.web.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /typedoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/typedoc.css -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/iter-ops/HEAD/yarn.lock --------------------------------------------------------------------------------