1.0.1 • Published 6 years ago

pipe-fns v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

pipe-fns

npm package

Easily pipe functions, similar to the proposal pipeline operator but with a more familiar syntax

Usage

const pipe = require('pipe-fns')

const capitalize = txt => txt.toUpperCase()
const exclame = txt => `${txt}!`

pipe('pipe it up', capitalize, exclame) // PIPE IT UP!

License

MIT © Jack Hanford