Autotracked Map, WeakMap, Set, and WeakSet
npm install @sandydoo/tracked-maps-and-setstracked-maps-and-sets
==============================================================================
This is a fork of @pzuraq/tracked-maps-and-sets
with fixes for Ember v3.27+ and backwards-compatibility down to Ember v3.16.
This addon provides tracked versions of JavaScript's Maps and Sets:
``js`
import {
TrackedMap,
TrackedWeakMap,
TrackedSet,
TrackedWeakSet,
} from '@sandydoo/tracked-maps-and-sets';
These classes have the same APIs as their native equivalents, but reading from
them or writing to them will be tracked, allowing you to use them in your Ember
apps and have changes automatically propagate!
Compatibility
------------------------------------------------------------------------------
* Ember.js v3.16 or above
* Ember CLI v2.13 or above
* Node.js v10 or above
Installation
------------------------------------------------------------------------------
``
ember install @sandydoo/tracked-maps-and-sets
Usage
------------------------------------------------------------------------------
See the MDN documentation for each class to learn more about it:
All public APIs are the same, and they will also return true in instanceof`
checks against the base datatype.
Contributing
------------------------------------------------------------------------------
See the Contributing guide for details.
License
------------------------------------------------------------------------------
This project is licensed under the MIT License.