const foo = pipe(
[
{ label: "a", value: 3 },
{ label: "b", value: 4 },
{ label: "c", value: 5 },
],
Array.reduce([], (b, a) => ???),
);
const foo = pipe(
[
{ label: "a", value: 3 },
{ label: "b", value: 4 },
{ label: "c", value: 5 },
],
Array.reduce([], (b, a) => ???),
);