We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27bf429 commit 488b3ddCopy full SHA for 488b3dd
src/index.js
@@ -1,5 +1,6 @@
1
import c from './combine-reducers';
2
import m from './merge-child-reducers';
3
4
-export const combineReducers = c;
5
-export const mergeChildReducers = m;
+//by exporting functions, these are able to be spied on
+export function combineReducers(...args){return c(...args);}
6
+export function mergeChildReducers(...args){return m(...args);}
0 commit comments