Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dolgarev/meteor-reactivevar-getonce
Adds a method "getOnce" to ReactiveVar
https://github.com/dolgarev/meteor-reactivevar-getonce
Last synced: about 7 hours ago
JSON representation
Adds a method "getOnce" to ReactiveVar
- Host: GitHub
- URL: https://github.com/dolgarev/meteor-reactivevar-getonce
- Owner: dolgarev
- License: mit
- Created: 2015-01-28T09:50:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-25T20:47:45.000Z (over 9 years ago)
- Last Synced: 2024-05-28T21:28:56.831Z (6 months ago)
- Language: JavaScript
- Homepage: https://atmospherejs.com/liberation/reactive-var-getonce
- Size: 117 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-getonce
====================
Adds a simple `getOnce` method to ReactiveVar.```js
var v = new ReactiveVar('test');
v.getOnce(); // => "test"
v.get(); // => undefined
```