tiny-immutable-set
TypeScript icon, indicating that this package has built-in type declarations

1.3.1 • Public • Published

tiny-immutable-set

A minimal, immutable, deep set utility for Javascript objects and arrays.

Inspired by, and based on, NickGard's tiny-get

npm version build status test coverage dependencies status gzip size

Usage

import { set } from 'tiny-immutable-set';

const newState = set(state, 'deep.path', newValue);

The original state is not modified.

Notes

  • If you're using lodash then you don't need this: see this thread for alternatives.
  • Unlike most other setter utilities, this is slightly faster if you use a string for the path, instead of an array: set(obj, "deep.path[123]", newVal) instead of set(obj, ["deep", "path", 123], newVal).
  • The small bundle size of this library comes with a slight speed tradeoff. This library is a little slower than immutable-assign and immutable.js, but a little faster than Immer and seamless-immutable. See full benchmark here.

Package Sidebar

Install

npm i tiny-immutable-set

Weekly Downloads

8

Version

1.3.1

License

MIT

Unpacked Size

36.9 kB

Total Files

19

Last publish

Collaborators

  • spautz