Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dolgarev/meteor-session-getonce

Adds a method `getOnce` to Session.
https://github.com/dolgarev/meteor-session-getonce

Last synced: about 7 hours ago
JSON representation

Adds a method `getOnce` to Session.

Awesome Lists containing this project

README

        

meteor-session-getonce
====================
Adds a method `getOnce` to Session.

```js
Session.set('foo', 'bar');
Session.getOnce('foo'); // => "bar"
Session.get('foo'); // => undefined
```