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