Preview: bindActionCreators.js
Size: 361 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/react-redux/es/utils/bindActionCreators.js
export default function bindActionCreators(actionCreators, dispatch) {
const boundActionCreators = {};
for (const key in actionCreators) {
const actionCreator = actionCreators[key];
if (typeof actionCreator === 'function') {
boundActionCreators[key] = (...args) => dispatch(actionCreator(...args));
}
}
return boundActionCreators;
}
Directory Contents
Dirs: 0 × Files: 24