add
import { add } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/number.ts";Add two numbers.
@example
import * as N from "./number.ts";
import { pipe } from "./fn.ts";
const result = pipe(2, N.add(2)); // 4
function add(second: number): (first: number) => number;