Skip to main

combineWith

combineWith

Signature - source.ts#L1432

function combineWith<T extends unknown[]>(
    sources: {
        [K in keyof T]: Source<T[K]>
    },
): <U>(source: Source<U>) => Source<[U, ...T]>