├── .gitignore ├── README.md ├── index.js ├── package.json └── test ├── byteatatime.js ├── file.txt ├── smallfile.txt └── wholefile.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | .DS_Store 4 | .vscode/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldair/node-fs-backwards-stream/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldair/node-fs-backwards-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldair/node-fs-backwards-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/byteatatime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldair/node-fs-backwards-stream/HEAD/test/byteatatime.js -------------------------------------------------------------------------------- /test/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldair/node-fs-backwards-stream/HEAD/test/file.txt -------------------------------------------------------------------------------- /test/smallfile.txt: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /test/wholefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldair/node-fs-backwards-stream/HEAD/test/wholefile.js --------------------------------------------------------------------------------