A set of tooling that defines a standard way of piping a value through zero or more unary functions.
Automated by JSR.
Automated by .github\workflows\publish.yml.
Run deno task test or deno task test:ci to execute the unit tests via
Deno.
import { pipe } from "@xan/pipe";
const output = pipe(2.165, Math.floor, String);
console.log(output); // "2"