immutable-object-methods
Update normal plain javascript object, immutable style. Simlar to how immutable.js, seamless-immutable etc does it but a lot smaller and simpler.
Installation
Download node at nodejs.org and install it, if you haven't already.
npm install immutable-object-methods --save
Usage
import {getIn, setIn, mergeDeep, assign, set, without} from 'immutable-object-methods';
const input = {a: {b: 'c'}};
const updated = setIn(input, ['a', 'd'], 'e');
console.log(input);
console.log(updated);
const merged = mergeDeep(
{foo: 'bar'},
{beep: {boop: 4711}, foo: 'bas'}
);
console.log(merged);
const assigned = assign({foo: 'bar'}, {foz: 'baz'});
console.log(assigned);
const value = getIn({a: {b: 'c'}}, ['a', 'b']);
console.log(value);
const noneExists = getIn({}, ['a', 'b']);
console.log(noneExists === undefined);
const data = set({beep: 'boop'}, 'foo', 'bar');
console.log(data);
const beep = without({foo: 'bar'}, 'foo');
console.log(beep);
Tests
npm install
npm test
Dependencies
Dev Dependencies
License
MIT
Generated by package-json-to-readme