getFirst
import { getFirst } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/pair.ts";Extracts the first value from a Pair.
@example
import * as P from "./pair.ts";
import { pipe } from "./fn.ts";
const shouldBe1 = pipe(
P.pair(1, 2),
P.getFirst
); // 1