(options)
| 292 | }; |
| 293 | |
| 294 | const compose = (options) => (...funcs) => (...args) => |
| 295 | [preEnhancer, ...funcs].reduceRight( |
| 296 | (composed, f) => f(composed), devToolsEnhancer(options)(...args) |
| 297 | ); |
| 298 | |
| 299 | export function composeWithDevTools(...funcs) { |
| 300 | if (funcs.length === 0) { |
no test coverage detected