├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── fixtures ├── input.txt ├── input.txt.x └── input.txt.y ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | fixtures/output.txt 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/node-promisepipe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/node-promisepipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/node-promisepipe/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/input.txt: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /fixtures/input.txt.x: -------------------------------------------------------------------------------- 1 | foobarX 2 | -------------------------------------------------------------------------------- /fixtures/input.txt.y: -------------------------------------------------------------------------------- 1 | foobarY 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/node-promisepipe/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/node-promisepipe/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/node-promisepipe/HEAD/test.js --------------------------------------------------------------------------------