I'm getting this error in a react-redux-saga project:
Syntax error: yield is a reserved word (66:16)
function* broken(action) {
props.forEach(prop => {
const res = yield put(blah)
// do stuff yada yada in here
})
}