Skip to content

Releases: g-makarov/dot-path-value

Version 0.0.10

17 May 09:16
Compare
Choose a tag to compare

🐞 fix: cannot install the package because nodejs requires proper key ordering in package.json

thanks to @ablakey

Version 0.0.9

20 Mar 06:32
Compare
Choose a tag to compare

🐞 fix: missing type export declaration

thanks to @saibotk

Version 0.0.7

01 Mar 10:46
Compare
Choose a tag to compare

🥳 New function setByPath

import { setByPath } from 'dot-path-value';

const newObj = setByPath({ a: { b: 1 } }, 'a.b', 2);

thanks to @acurrieclark