├── .eslintrc.json ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── Gzip.js ├── Gzip.purs └── Gzip.txt ├── package.json ├── spago.lock ├── spago.yaml ├── src └── Node │ ├── Stream.js │ ├── Stream.purs │ └── Stream │ └── Aff.purs └── test ├── Main.js ├── Main.purs ├── Main1.js ├── Main1.purs ├── Main2.purs ├── Main3.js ├── Main3.purs ├── Main4.js └── Main4.purs /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/README.md -------------------------------------------------------------------------------- /example/Gzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/example/Gzip.js -------------------------------------------------------------------------------- /example/Gzip.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/example/Gzip.purs -------------------------------------------------------------------------------- /example/Gzip.txt: -------------------------------------------------------------------------------- 1 | Compress me pretty please! 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/package.json -------------------------------------------------------------------------------- /spago.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/spago.lock -------------------------------------------------------------------------------- /spago.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/spago.yaml -------------------------------------------------------------------------------- /src/Node/Stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/src/Node/Stream.js -------------------------------------------------------------------------------- /src/Node/Stream.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/src/Node/Stream.purs -------------------------------------------------------------------------------- /src/Node/Stream/Aff.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/src/Node/Stream/Aff.purs -------------------------------------------------------------------------------- /test/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main.js -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main.purs -------------------------------------------------------------------------------- /test/Main1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main1.js -------------------------------------------------------------------------------- /test/Main1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main1.purs -------------------------------------------------------------------------------- /test/Main2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main2.purs -------------------------------------------------------------------------------- /test/Main3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main3.js -------------------------------------------------------------------------------- /test/Main3.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main3.purs -------------------------------------------------------------------------------- /test/Main4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main4.js -------------------------------------------------------------------------------- /test/Main4.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-node/purescript-node-streams/HEAD/test/Main4.purs --------------------------------------------------------------------------------