├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── package.json ├── src ├── FromStream.ts ├── FromStreamDisposable.ts ├── addListeners.ts ├── index.ts └── types.ts ├── test ├── index.ts └── tsconfig.json ├── tsconfig.commonjs.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/package.json -------------------------------------------------------------------------------- /src/FromStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/src/FromStream.ts -------------------------------------------------------------------------------- /src/FromStreamDisposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/src/FromStreamDisposable.ts -------------------------------------------------------------------------------- /src/addListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/src/addListeners.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.commonjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/tsconfig.commonjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostjs-community/most-node-streams/HEAD/tslint.json --------------------------------------------------------------------------------