Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const out = epic(actionsStream, middlewareApiOrStateStream)
if (!out || !out.source) {
const epicIdentifier = epic.name
? `named ${epic.name}`
: `at index ${findIndex(epic, epicsArray)} of the passed in array`
throw new TypeError(
`All Epics in the array provided to combineEpics must return a stream. Check the return value of the Epic ${epicIdentifier}.`,
)
}
return out
}
return mergeArray(map(callEpic, epicsArray))
}
(streams) => streams.length === 0 ? just([]) : mergeArray(streams),
streams$,