├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── Result.js ├── construct.js ├── createBooleanCallHandler.js ├── createMatchAsCallHandler.js ├── emitActions.js ├── generateDefaultCallName.js ├── generateWrappedFunctionName.js ├── index.js ├── match.js ├── toResult.js └── waterfall.js └── test ├── Result.js ├── construct.js ├── createBooleanCallHandler.js ├── createMatchAsCallHandler.js ├── emitActions.js ├── generateDefaultCallName.js ├── generateWrappedFunctionName.js ├── match.js └── toResult.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/Result.js -------------------------------------------------------------------------------- /src/construct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/construct.js -------------------------------------------------------------------------------- /src/createBooleanCallHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/createBooleanCallHandler.js -------------------------------------------------------------------------------- /src/createMatchAsCallHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/createMatchAsCallHandler.js -------------------------------------------------------------------------------- /src/emitActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/emitActions.js -------------------------------------------------------------------------------- /src/generateDefaultCallName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/generateDefaultCallName.js -------------------------------------------------------------------------------- /src/generateWrappedFunctionName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/generateWrappedFunctionName.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/index.js -------------------------------------------------------------------------------- /src/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/match.js -------------------------------------------------------------------------------- /src/toResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/toResult.js -------------------------------------------------------------------------------- /src/waterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/src/waterfall.js -------------------------------------------------------------------------------- /test/Result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/Result.js -------------------------------------------------------------------------------- /test/construct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/construct.js -------------------------------------------------------------------------------- /test/createBooleanCallHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/createBooleanCallHandler.js -------------------------------------------------------------------------------- /test/createMatchAsCallHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/createMatchAsCallHandler.js -------------------------------------------------------------------------------- /test/emitActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/emitActions.js -------------------------------------------------------------------------------- /test/generateDefaultCallName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/generateDefaultCallName.js -------------------------------------------------------------------------------- /test/generateWrappedFunctionName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/generateWrappedFunctionName.js -------------------------------------------------------------------------------- /test/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/match.js -------------------------------------------------------------------------------- /test/toResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebinsua/redux-saga-helpers/HEAD/test/toResult.js --------------------------------------------------------------------------------