Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dpath

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dpath

Sugar for myString.split('.'); Use: dp('a.b.c'); // => ['a','b','c']

  • 2.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Dot Path

FP sugar for immutables, using dot path syntax for deep property access.

Why?

Immutable.js is great, but the API is a bit awkward -- particularly the array-style path notation. These utilities provide functional programming sugar for working with the immutable.js API.

So instead of i.setIn(['a', 'b', 'c'], value); you can do set('a.b.c', i, value);.

Seems like a small thing, but with curry, you can do: const setUserRole = set('user.role', i); and then later setUserRole('enterprise'); -- which is great for repeated set calls, such as in Redux actions, for instance.

If you want to use FP pipes (lodash flow, etc...) it gets even better. Normally immutables force you out of point-free style, like this:

const pipeline = pipe(
  getImmutable,
  immutable => immutable.getIn(['a', 'b', 'c'])
  map(doSomethingWithABC)
);

With dpath, you can do this, instead, and stay point-free:

const pipeline = pipe(
  getImmutable,
  get('a.b.c')
  map(doSomethingWithABC)
);

Install

$ npm install --save dpath

dp(path: String, delimiter: String) => Array

import dp from 'dpath';
const arrPath = dp('a.b.c'); // => ['a','b','c']

// optionally specify a delimiter:
const arr2 = dp('a,b,c', ','); // => ['a','b','c']

Use with Immutable.js

import I from `immutable`;
import dp from 'dpath';

let map = I.Map().setIn(dp('a.b.c'), 'val');
map.toJS(); // => {a:{b:{c:'val'}}}

get(path: String, i: Immutable) => value: Any

Deep property get for the Immutable.js API.

const i = Immutable.fromJS({
  a: {
    b: { c: 'c' }
  }
});
get('a.b.c', i); // => 'c'

set(path: String, i: Immutable, val: Any) => Immutable

Deep property set for the Immutable.js API.

const i = Immutable.fromJS({
  a: {
    b: { c: 'c' }
  }
});
const newState = set('a.b.c', i, 23);
get('a.b.c', newState); // => 23

Keywords

FAQs

Package last updated on 05 Oct 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc