├── .travis.yml ├── History.md ├── License.md ├── Readme.md ├── capture.js ├── concat.js ├── debug └── print.js ├── delay.js ├── drop-while.js ├── drop.js ├── expand.js ├── filter.js ├── fold.js ├── hub.js ├── index.js ├── into.js ├── map.js ├── merge.js ├── package.json ├── reducer.js ├── reductions.js ├── take-while.js ├── take.js └── test ├── capture.js ├── common-index.js ├── concat.js ├── delay.js ├── drop-while.js ├── drop.js ├── errors.js ├── filter.js ├── fold.js ├── hub.js ├── index.js ├── into.js ├── map.js ├── merge.js ├── reductions.js ├── take-while.js ├── take.js ├── tap-index.js └── util ├── event.js ├── lazy.js └── test.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/History.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/License.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/Readme.md -------------------------------------------------------------------------------- /capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/capture.js -------------------------------------------------------------------------------- /concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/concat.js -------------------------------------------------------------------------------- /debug/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/debug/print.js -------------------------------------------------------------------------------- /delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/delay.js -------------------------------------------------------------------------------- /drop-while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/drop-while.js -------------------------------------------------------------------------------- /drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/drop.js -------------------------------------------------------------------------------- /expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/expand.js -------------------------------------------------------------------------------- /filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/filter.js -------------------------------------------------------------------------------- /fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/fold.js -------------------------------------------------------------------------------- /hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/hub.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/index.js -------------------------------------------------------------------------------- /into.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/into.js -------------------------------------------------------------------------------- /map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/map.js -------------------------------------------------------------------------------- /merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/merge.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/package.json -------------------------------------------------------------------------------- /reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/reducer.js -------------------------------------------------------------------------------- /reductions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/reductions.js -------------------------------------------------------------------------------- /take-while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/take-while.js -------------------------------------------------------------------------------- /take.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/take.js -------------------------------------------------------------------------------- /test/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/capture.js -------------------------------------------------------------------------------- /test/common-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/common-index.js -------------------------------------------------------------------------------- /test/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/concat.js -------------------------------------------------------------------------------- /test/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/delay.js -------------------------------------------------------------------------------- /test/drop-while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/drop-while.js -------------------------------------------------------------------------------- /test/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/drop.js -------------------------------------------------------------------------------- /test/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/errors.js -------------------------------------------------------------------------------- /test/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/filter.js -------------------------------------------------------------------------------- /test/fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/fold.js -------------------------------------------------------------------------------- /test/hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/hub.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/index.js -------------------------------------------------------------------------------- /test/into.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/into.js -------------------------------------------------------------------------------- /test/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/map.js -------------------------------------------------------------------------------- /test/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/merge.js -------------------------------------------------------------------------------- /test/reductions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/reductions.js -------------------------------------------------------------------------------- /test/take-while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/take-while.js -------------------------------------------------------------------------------- /test/take.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/take.js -------------------------------------------------------------------------------- /test/tap-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/tap-index.js -------------------------------------------------------------------------------- /test/util/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/util/event.js -------------------------------------------------------------------------------- /test/util/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/util/lazy.js -------------------------------------------------------------------------------- /test/util/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/reducers/HEAD/test/util/test.js --------------------------------------------------------------------------------