simple-update-in
Advanced tools
Changelog
[2.0.1] - 2018-12-03
<script src="https://unpkg.com/simple-update-in/dist/simple-update-in.production.min.js"></script>
<script>window.simpleUpdateIn({ abc: 123, def: 456 }, ['xyz'], () => 789);</script>
Changelog
[2.0.0] - 2018-12-03
await updateIn([1, 2, 3, 4, 5], [v => Promise.resolve(v % 2)], v => v * 10)
will return [10, 2, 30, 4, 50]
await updateIn([1, 2, 3], [0], v => Promise.resolve(v * 10))
will return [10, 2, 3]
-1
-1
could means append, prepend, or the last item