├── .gitignore ├── .npmignore ├── .travis.yml ├── License ├── Makefile ├── Readme.md ├── lib └── combined_stream.js ├── package.json └── test ├── common.js ├── fixture ├── file1.txt └── file2.txt ├── integration ├── test-callback-streams.js ├── test-data-size.js ├── test-delayed-streams-and-buffers-and-strings.js ├── test-delayed-streams.js ├── test-empty-string.js ├── test-is-stream-like.js ├── test-max-data-size.js ├── test-pipe-memory-leak.js ├── test-recursion-append.js ├── test-recursion-callback.js └── test-unpaused-streams.js └── run.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/License -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/combined_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/lib/combined_stream.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/common.js -------------------------------------------------------------------------------- /test/fixture/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/fixture/file1.txt -------------------------------------------------------------------------------- /test/fixture/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/fixture/file2.txt -------------------------------------------------------------------------------- /test/integration/test-callback-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-callback-streams.js -------------------------------------------------------------------------------- /test/integration/test-data-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-data-size.js -------------------------------------------------------------------------------- /test/integration/test-delayed-streams-and-buffers-and-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-delayed-streams-and-buffers-and-strings.js -------------------------------------------------------------------------------- /test/integration/test-delayed-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-delayed-streams.js -------------------------------------------------------------------------------- /test/integration/test-empty-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-empty-string.js -------------------------------------------------------------------------------- /test/integration/test-is-stream-like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-is-stream-like.js -------------------------------------------------------------------------------- /test/integration/test-max-data-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-max-data-size.js -------------------------------------------------------------------------------- /test/integration/test-pipe-memory-leak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-pipe-memory-leak.js -------------------------------------------------------------------------------- /test/integration/test-recursion-append.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-recursion-append.js -------------------------------------------------------------------------------- /test/integration/test-recursion-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-recursion-callback.js -------------------------------------------------------------------------------- /test/integration/test-unpaused-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/integration/test-unpaused-streams.js -------------------------------------------------------------------------------- /test/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-combined-stream/HEAD/test/run.js --------------------------------------------------------------------------------