├── .gitignore ├── LICENSE ├── README.md ├── example ├── index.html └── index.js ├── index.js ├── index.js.map ├── index.min.js ├── package.json ├── src ├── index.js ├── stream.js └── util │ ├── alias.js │ ├── create.js │ ├── streamable.js │ └── type.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/README.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/example/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/index.js -------------------------------------------------------------------------------- /index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/index.js.map -------------------------------------------------------------------------------- /index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/index.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/src/stream.js -------------------------------------------------------------------------------- /src/util/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/src/util/alias.js -------------------------------------------------------------------------------- /src/util/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/src/util/create.js -------------------------------------------------------------------------------- /src/util/streamable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/src/util/streamable.js -------------------------------------------------------------------------------- /src/util/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/src/util/type.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilssolanki/stroxy/HEAD/test/index.js --------------------------------------------------------------------------------