├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── keys.js ├── make.js ├── package.json ├── simple ├── maps.js └── reduces.js ├── test ├── filter-ssb.js ├── filter.js ├── flexible.js ├── groups.js ├── keys.js ├── map.js ├── project.js ├── reduce-stream.js ├── reduce.js └── util.js └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/index.js -------------------------------------------------------------------------------- /keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/keys.js -------------------------------------------------------------------------------- /make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/make.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/package.json -------------------------------------------------------------------------------- /simple/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/simple/maps.js -------------------------------------------------------------------------------- /simple/reduces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/simple/reduces.js -------------------------------------------------------------------------------- /test/filter-ssb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/filter-ssb.js -------------------------------------------------------------------------------- /test/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/filter.js -------------------------------------------------------------------------------- /test/flexible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/flexible.js -------------------------------------------------------------------------------- /test/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/groups.js -------------------------------------------------------------------------------- /test/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/keys.js -------------------------------------------------------------------------------- /test/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/map.js -------------------------------------------------------------------------------- /test/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/project.js -------------------------------------------------------------------------------- /test/reduce-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/reduce-stream.js -------------------------------------------------------------------------------- /test/reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/reduce.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/test/util.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/map-filter-reduce/HEAD/util.js --------------------------------------------------------------------------------