markerikson / redux-ecosystem-links

A categorized list of Redux-related addons, libraries, and utilities
5.23k stars 372 forks source link

Do you mind evaluate and possibly add my immutable helper library ImmutableAssign to your Immutable Data section? #28

Closed engineforce closed 7 years ago

engineforce commented 7 years ago

Hi Mark, I love your redux-ecosystem-links, it is really useful. Do you mind evaluate and possibly add my immutable helper library ImmutableAssign to your Immutable Data section?

Following is the advantages that differentiate it from other immutable libraries:

Thanks

markerikson commented 7 years ago

Hey. Saw your comment on Medium, and actually just added it. See 9d578bf9551505d592c085bc1675b575320c37a4 .

Looks useful. The fact that it's actually doing a parse of the getter function is... interesting. Kinda curious how well that works. How does it handle object lookups that don't exist, ie, a.b.c where b isn't there?

engineforce commented 7 years ago

It will throw an exception: Cannot read property 'c' of undefined. I think this is expected behavior.

engineforce commented 7 years ago

In addition, this library has been fully unit tested in node.js and major browsers, and I have been using it in a production application works quite well.