immutable-short-string-notation

Allows you to set paths directly in strings instead of passing arrays

MIT License

Downloads
13
Stars
2

immutable-short-string-notation

Allows you to set paths directly in strings instead of passing arrays

How to use

The requirement must appear in the app before other immutable actions (a good idea would be to place in the root of the app if uncertain)

import { Map } from "immutable-short-string-notation";

Somewhere else in the application you may use the string syntax

state.setIn("a.b.c.d.e", 42);
state.getIn("a.b.c.d.e"); // 42

// All other ways still work
state.setIn("a.b.c.d.e".split("."), 42);
state.setIn(["a", "b", "c", "d", "e"], 42);
state.getIn("a.b.c.d.e"); // still 42

It supports the following Immutable.Map methods view tests

  • getIn
  • setIn
  • mergeDeepIn
  • updateIn

Why ?

Because writing state.getIn(['node1', 'node23', 'node67']) could be shorter and state.getIn('node1.node23.node67'.split('.')) feel wrong when it's been repeated a tousand times

so let's just remove the split as anyway we are sure we want to pass an array here

Installation (available on npm)

# npm
npm install --save immutable-short-string-notation
# yarn
yarn add immutable-short-string-notation
#pnpm
pnpm add immutable-short-string-notation

or in Deno, simply import

// from npm
import { Map, List } from "npm:immutable-short-string-notation";
// from CDN
import {
  Map,
  List,
} from "https://deno.dev/x/immutable-short-string-notation/mod.ts";
Package Rankings
Top 19.67% on Npmjs.org
Related Projects