simple-update-in
Advanced tools
Changelog
[1.4.0] - 2018-10-08
@babel/core@7.1.2
merge@1.2.1
(via npm audit fix
)jest@23.6.0
Changelog
[1.3.1] - 2018-10-05
updateIn({}, ['Hello', () => true], () => 'World!'])
will return {}
updateIn([], [0, () => true], () => 'Aloha'])
will return []
Changelog
[1.3.0] - 2018-08-17
updateIn([1, 2, 3, 4, 5], [v => v % 2], v => v * 10)
will return [10, 2, 30, 4, 50]