├── .eslintrc.json ├── .github └── workflows │ ├── publish-in-github-package-registry.yml │ └── run-tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples └── collection-pipeline.js ├── package.json ├── src ├── collection.ts ├── contracts.ts ├── index.ts └── pending-async-collection.ts ├── test ├── collections.js └── helpers │ └── expect.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/publish-in-github-package-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/.github/workflows/publish-in-github-package-registry.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/README.md -------------------------------------------------------------------------------- /examples/collection-pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/examples/collection-pipeline.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/package.json -------------------------------------------------------------------------------- /src/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/src/collection.ts -------------------------------------------------------------------------------- /src/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/src/contracts.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pending-async-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/src/pending-async-collection.ts -------------------------------------------------------------------------------- /test/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/test/collections.js -------------------------------------------------------------------------------- /test/helpers/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/test/helpers/expect.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercharge/collections/HEAD/tsconfig.json --------------------------------------------------------------------------------