Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dolgarev/meteor-reactivevar-unset
- Owner: dolgarev
- License: mit
- Created: 2015-01-28T09:59:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-28T10:00:07.000Z (almost 10 years ago)
- Last Synced: 2024-11-14T22:31:25.472Z (2 months ago)
- Topics: meteor
- Language: JavaScript
- Homepage: https://atmospherejs.com/liberation/reactive-var-unset
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```