├── .github └── workflows │ └── js-test-and-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── duplex.js ├── index.js └── transform.js └── test ├── duplex.test.js ├── helpers ├── random.js └── streams.js ├── readable.test.js ├── transform.test.js └── writable.test.js /.github/workflows/js-test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/.github/workflows/js-test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/package.json -------------------------------------------------------------------------------- /src/duplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/src/duplex.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/src/index.js -------------------------------------------------------------------------------- /src/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/src/transform.js -------------------------------------------------------------------------------- /test/duplex.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/test/duplex.test.js -------------------------------------------------------------------------------- /test/helpers/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/test/helpers/random.js -------------------------------------------------------------------------------- /test/helpers/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/test/helpers/streams.js -------------------------------------------------------------------------------- /test/readable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/test/readable.test.js -------------------------------------------------------------------------------- /test/transform.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/test/transform.test.js -------------------------------------------------------------------------------- /test/writable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanshaw/it-to-stream/HEAD/test/writable.test.js --------------------------------------------------------------------------------