├── .babelrc ├── .coveralls.yml ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── module └── index.js ├── package.json ├── test.js └── test └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: YBEWol9FuAggTwnAXR4jXe7kydslWSJjE 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/README.md -------------------------------------------------------------------------------- /module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/module/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/test.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoeffel/compose-function/HEAD/test/test.js --------------------------------------------------------------------------------