MCPcopy
hub / github.com/zalmoxisus/remote-redux-devtools / compose

Function compose

src/devTools.js:294–297  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

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

Callers 3

composeWithDevToolsFunction · 0.85
configureStoreFunction · 0.85
configureStoreFunction · 0.85

Calls 1

devToolsEnhancerFunction · 0.85

Tested by

no test coverage detected