import { multiply } from "https://deno.land/x/fun@v2.0.0/number.ts";
Multiply two numbers.
Examples
Example 1
Example 1
import * as N from "./number.ts";
import { pipe } from "./fn.ts";
const result = pipe(2, N.multiply(2)); // 4
import { multiply } from "https://deno.land/x/fun@v2.0.0/number.ts";
Multiply two numbers.
Example 1
import * as N from "./number.ts";
import { pipe } from "./fn.ts";
const result = pipe(2, N.multiply(2)); // 4