We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b12b92b commit 2f83693Copy full SHA for 2f83693
src/combineCycles.js
@@ -12,7 +12,7 @@ export default function combineCycles(...mains) {
12
.reduce((combinedSinks, driver) => {
13
const driverSinks = sinks
14
.filter(sink => sink[driver])
15
- .map(sink => sink[driver])
+ .map(sink => xs.from(sink[driver]))
16
17
combinedSinks[driver] = xs.merge(...driverSinks)
18
return combinedSinks
0 commit comments