(...funcs)
| 363 | } |
| 364 | |
| 365 | export function composeWithDevTools(...funcs) { |
| 366 | if (funcs.length === 0) { |
| 367 | return devToolsEnhancer() |
| 368 | } |
| 369 | if (funcs.length === 1 && typeof funcs[0] === 'object') { |
| 370 | return compose(funcs[0]) |
| 371 | } |
| 372 | return compose({})(...funcs) |
| 373 | } |
nothing calls this directly
no test coverage detected