liberation:reactive-dict-invalidate-key

v0.0.1Published 8 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

meteor-reactive-dict-invalidate-key

A new method invalidateKey for ReaсtiveDict invalidates one key in the dictionary without changing its value.

1...
2this.componentState = new ReactiveDict()
3this.componentState.set('title', 'test')
4...
5this.componentState.invalidateKey('title')
6