├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── 1.js ├── 2.js ├── 3.js └── 4.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/package.json -------------------------------------------------------------------------------- /test/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/test/1.js -------------------------------------------------------------------------------- /test/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/test/2.js -------------------------------------------------------------------------------- /test/3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/test/3.js -------------------------------------------------------------------------------- /test/4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimetnet/node-stream-array/HEAD/test/4.js --------------------------------------------------------------------------------