1.0.0 • Published 5 months ago

pipe-fun v1.0.0

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
5 months ago

pipe-fun

Build and compose pipelines with ease

Install

npm install -S pipe-fun

Usage

import {_, pipe} from 'pipe-fun';

const pipeline = pipe(() => ({name: 'John Smith'}), user => user.name);

await pipeline(_);
//=> John Smith