functiob action1Creator() {
return (dispatch, getState) => {
fetch(...)
.then(JSON.parse)
.then((response) => dispatch(action2Creator(response)))
;
};
}
function action2Creator(response) {
return { type: 'SOME', data: response.data[12] };
}