├── .gitignore ├── API.md ├── LICENSE ├── README.md ├── package.json ├── stream-stack.js ├── test ├── test-custom-edit.js ├── test-fakeDuplexStream.js ├── test-parent-emits.js ├── test-proxy-events.js └── test-topStream.js └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/API.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/package.json -------------------------------------------------------------------------------- /stream-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/stream-stack.js -------------------------------------------------------------------------------- /test/test-custom-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/test/test-custom-edit.js -------------------------------------------------------------------------------- /test/test-fakeDuplexStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/test/test-fakeDuplexStream.js -------------------------------------------------------------------------------- /test/test-parent-emits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/test/test-parent-emits.js -------------------------------------------------------------------------------- /test/test-proxy-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/test/test-proxy-events.js -------------------------------------------------------------------------------- /test/test-topStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/test/test-topStream.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-stream-stack/HEAD/util.js --------------------------------------------------------------------------------