Skip to content

Commit 2a9c239

Browse files
committed
Added lodash
1 parent 7ddf9a6 commit 2a9c239

File tree

3 files changed

+7
-105
lines changed

3 files changed

+7
-105
lines changed

npm-debug.log

Lines changed: 0 additions & 104 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"redux": "^1.0.0 || 1.0.0-alpha || 1.0.0-rc"
3434
},
3535
"dependencies": {
36-
"invariant": "^2.1.0"
36+
"invariant": "^2.1.0",
37+
"lodash": "^3.10.1"
3738
}
3839
}

src/utils/wrapAcitonCreators.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { bindActionCreators } from 'redux';
2+
3+
export default function wrapActionCreators(actionCreators) {
4+
return dispatch => bindActionCreators(actionCreators, dispatch);
5+
}

0 commit comments

Comments
 (0)