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