├── .c8rc.json ├── .eslintrc ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── post-dependabot-prs.yml │ └── release-drafter.yml ├── .gitignore ├── .mocharc.json ├── .yarnrc.yml ├── README.md ├── biome.jsonc ├── lib ├── common.ts ├── default.ts ├── node.ts └── tsconfig.json ├── package.json ├── readable-web-to-node-stream.iml ├── test ├── test.ts ├── tsconfig.json └── util.ts ├── tsconfig.json └── yarn.lock /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/post-dependabot-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.github/workflows/post-dependabot-prs.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/README.md -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/biome.jsonc -------------------------------------------------------------------------------- /lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/lib/common.ts -------------------------------------------------------------------------------- /lib/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/lib/default.ts -------------------------------------------------------------------------------- /lib/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/lib/node.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/package.json -------------------------------------------------------------------------------- /readable-web-to-node-stream.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/readable-web-to-node-stream.iml -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/test/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borewit/readable-web-to-node-stream/HEAD/yarn.lock --------------------------------------------------------------------------------