Socket
Socket
Sign inDemoInstall

immutable-object-methods

Package Overview
Dependencies
1
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    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.


Version published
Weekly downloads
2.1K
decreased by-15.48%
Maintainers
1
Install size
26.0 kB
Created
Weekly downloads
 

Readme

Source

immutable-object-methods Build Status

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);

// immutable assign
const assigned = assign({foo: 'bar'}, {foz: 'baz'});
console.log(assigned);

const value = getIn({a: {b: 'c'}}, ['a', 'b']);
// will print out 'c'
console.log(value);

const noneExists = getIn({}, ['a', 'b']);
// don't throw if value doesn't exists, just return undefined
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

  • object-assign: ES2015 Object.assign() ponyfill

Dev Dependencies

License

MIT

Generated by package-json-to-readme

FAQs

Last updated on 07 Jul 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc