1// @flow 2 3import * as Wonka from '../../'; 4 5Wonka.pipe( 6 Wonka.fromArray([1, 2, 3]), 7 Wonka.map(x => x * 2), 8 Wonka.publish 9);