https://github.com/niradler/pipeit
https://github.com/niradler/pipeit
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/niradler/pipeit
- Owner: niradler
- Created: 2019-09-16T23:51:01.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-07T14:23:32.000Z (over 6 years ago)
- Last Synced: 2025-07-04T20:03:31.866Z (12 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# compose-pipe
```
const addOne = x => x + 1;
const addTwo = x => x + 2;
const addThree = x => x + 3;
const res = pipeit({ addOne, addTwo }, 0, { debug: true }).addOne.addOne.addTwo.value;
const res2 = pipeit([ addOne, addTwo ], 0, { debug: true }).addOne.addOne.addTwo.value;
```