Preview: bindActionCreators.js
Size: 427 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/react-redux/lib/utils/bindActionCreators.js
"use strict";
exports.__esModule = true;
exports.default = bindActionCreators;
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: 12