├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── img ├── condition.svg └── ternary.svg ├── index.js ├── package.json └── test ├── condition.js ├── index.js └── ternary.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/README.md -------------------------------------------------------------------------------- /img/condition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/img/condition.svg -------------------------------------------------------------------------------- /img/ternary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/img/ternary.svg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/test/condition.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/test/index.js -------------------------------------------------------------------------------- /test/ternary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/ternary-stream/HEAD/test/ternary.js --------------------------------------------------------------------------------