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