import { Mapper } from './index' export const getPairFromOne = (get1: Mapper, get2: Mapper) => (input: In): [Out1, Out2] => [get1(input), get2(input)]