pipe-fun
v2.0.0
Published
Build and compose pipelines with ease
Downloads
106
Maintainers
Readme
pipe-fun
Build and compose pipelines with ease
Install
npm install -S pipe-funUsage
import {_, pipe} from 'pipe-fun';
const pipeline = pipe(() => ({name: 'John Smith'}), user => user.name);
await pipeline(_);
//=> John Smith