capital-c

0.0.1 • Public • Published

capital-c

Magically composable functions!

const C = require('capital-c');

let f1 = x => x + 1;
let f2 = x => x * 2;

({f1, f2} = C({f1, f2}));

const y = f1.f2.f1.f2.f2.f1;

console.log(y);
console.log(y(2));
// Profit

install

with npm do:

npm install capital-c

license

MIT

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i capital-c

      Weekly Downloads

      1

      Version

      0.0.1

      License

      MIT

      Last publish

      Collaborators

      • mvaldesdeleon