celalertug / js-fxn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

js fxn

Makes a pipeline between functions.

install

yarn add js-fxn

pipe

const add10 = a => a + 10;
const mul2 = a => a * 2;
const sq = a => a * a;

const f = pipe(add10, mul2, sq);
const res = f(5);

console.log(res) // 60

About


Languages

Language:JavaScript 100.0%