funktio
v0.0.1
Published
A tiny functional programming toolbox.
Downloads
4
Maintainers
Readme
funktio.js
A tiny functional programming toolbox.
Usage:
const funktio = require("funktio");
// returns a new object {a: 1, b: 2}
const obj = funktio.updated({a: 1}, "b", 2);
// returns a new object {b: 2}
const obj2 = funktio.removed(obj, "a");