in src/core/system.js [272:298]
getBoundActions(dispatch) {
dispatch = dispatch || this.getStore().dispatch
const actions = this.getActions()
const process = creator =>{
if( typeof( creator ) !== "function" ) {
return objMap(creator, prop => process(prop))
}
return ( ...args )=>{
var action = null
try{
action = creator( ...args )
}
catch( e ){
action = {type: NEW_THROWN_ERR, error: true, payload: serializeError(e) }
}
finally{
return action // eslint-disable-line no-unsafe-finally
}
}
}
return objMap(actions, actionCreator => bindActionCreators( process( actionCreator ), dispatch ) )
}