Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dolgarev/meteor-reactivevar-unset

Adds a method "unset" to ReactiveVar
https://github.com/dolgarev/meteor-reactivevar-unset

meteor

Last synced: 9 days ago
JSON representation

Adds a method "unset" to ReactiveVar

Awesome Lists containing this project

README

        

meteor-reactivevar-unset
====================
Adds a method `unset` to ReactiveVar.

```js
var v = new ReactiveVar('test');
v.unset();
v.get(); // => undefined
```