├── .gitignore ├── .travis.yml ├── LICENSE ├── collaborators.md ├── index.js ├── package.json ├── readme.md └── test ├── array.js ├── buffer.js ├── infer.js ├── nothing.js ├── objects.js ├── server └── ls.js ├── string.js └── typedarray.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/collaborators.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/readme.md -------------------------------------------------------------------------------- /test/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/array.js -------------------------------------------------------------------------------- /test/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/buffer.js -------------------------------------------------------------------------------- /test/infer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/infer.js -------------------------------------------------------------------------------- /test/nothing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/nothing.js -------------------------------------------------------------------------------- /test/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/objects.js -------------------------------------------------------------------------------- /test/server/ls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/server/ls.js -------------------------------------------------------------------------------- /test/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/string.js -------------------------------------------------------------------------------- /test/typedarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/concat-stream/HEAD/test/typedarray.js --------------------------------------------------------------------------------