import { MapperP } from './index' export const getOneOfTwo = (mapU: MapperP, map: MapperP) => async (input: In) => { return (await mapU(input)) ?? (await map(input)) }