Skip to content

A set of tooling that defines a standard way of piping a value through zero or more unary functions.

License

Notifications You must be signed in to change notification settings

alexanderharding/pipe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@xan/pipe

A set of tooling that defines a standard way of piping a value through zero or more unary functions.

Build

Automated by JSR.

Publishing

Automated by .github\workflows\publish.yml.

Running unit tests

Run deno task test or deno task test:ci to execute the unit tests via Deno.

Example

import { pipe } from "@xan/pipe";

const output = pipe(2.165, Math.floor, String);

console.log(output); // "2"

About

A set of tooling that defines a standard way of piping a value through zero or more unary functions.

Resources

License

Stars

Watchers

Forks