├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── CLAUDE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bench.js ├── eslint.config.js ├── example.js ├── example.mjs ├── index.d.ts ├── package.json ├── queue.js └── test ├── example.ts ├── promise.js ├── test.js └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/bench.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/eslint.config.js -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/example.js -------------------------------------------------------------------------------- /example.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/example.mjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/package.json -------------------------------------------------------------------------------- /queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/queue.js -------------------------------------------------------------------------------- /test/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/test/example.ts -------------------------------------------------------------------------------- /test/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/test/promise.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/test/test.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastq/HEAD/test/tsconfig.json --------------------------------------------------------------------------------