← Back to index

facebook/immutable-js

Created: 2015-09-11 22:06  |  Source: https://facebook.github.io/immutable-js/

Immutable.js
https://facebook.github.io/immutable-js/
Immutable collections for JavaScript Immutable data cannot be changed once created, leading to much simpler application development, no defensive copying, and enabling advanced memoization and change detection techniques with simple logic. Persistent data presents a mutative API which does not update the data in-place, but instead always yields new updated data. Immutable provides Persistent Immutable List , Stack , Map , OrderedMap , Set , OrderedSet and Record . They are highly efficient on m...