├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test-fs.js ├── test-readable.js ├── test-writable.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/package.json -------------------------------------------------------------------------------- /test-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/test-fs.js -------------------------------------------------------------------------------- /test-readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/test-readable.js -------------------------------------------------------------------------------- /test-writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendrucker/stream-to-promise/HEAD/test-writable.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | require('hard-rejection/register') 2 | --------------------------------------------------------------------------------