Immutability is a fundamental part of how Redux stores work when used to follow the State-Action-Model pattern. Using a library such as immutable.js is recommended for the efficient deep object comparisons. However, when you are limited to using only ES6/lodash syntax in your web application, immutability can be hard to enforce when passing and mapping…
Redux Freezer
Immutability is a fundamental part of how Redux stores work when used to follow the State-Action-Model pattern. Using a library such as immutable.js…