updeep/README.md

16 lines
646 B
Markdown
Raw Normal View History

2023-01-10 17:38:20 +00:00
# updeep-remeda
2015-12-15 16:56:09 +00:00
2016-11-02 02:41:04 +00:00
> Easily update nested frozen objects and arrays in a declarative and immutable
> manner.
2015-08-01 17:09:25 +00:00
## About
2023-01-10 20:15:48 +00:00
This is a fork of the main [updeep](https://github.com/substantial/updeep) package.
2023-01-10 17:38:20 +00:00
2015-08-19 12:58:08 +00:00
updeep makes updating deeply nested objects/arrays painless by allowing you to
declare the updates you would like to make and it will take care of the rest. It
will recursively return the same instance if no changes have been made, making
2023-01-10 17:38:20 +00:00
it ideal for using reference equality checks to detect changes.
2015-07-31 15:53:25 +00:00
2023-01-10 20:14:20 +00:00
Full documentation can be found at [https://yanick.github.io/updeep-remeda/index.html](https://yanick.github.io/updeep-remeda/index.html).