├── .gitattributes ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json └── test ├── error-test.js ├── files └── input1.txt ├── pipe-test.js ├── readable-test.js └── writable-test.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/package.json -------------------------------------------------------------------------------- /test/error-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/test/error-test.js -------------------------------------------------------------------------------- /test/files/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/test/files/input1.txt -------------------------------------------------------------------------------- /test/pipe-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/test/pipe-test.js -------------------------------------------------------------------------------- /test/readable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/test/readable-test.js -------------------------------------------------------------------------------- /test/writable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fent/node-streamify/HEAD/test/writable-test.js --------------------------------------------------------------------------------