1.0.0 • Published 11 months ago
pipe-fun v1.0.0
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 Smith1.0.0
11 months ago