Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dolgarev/meteor-session-getonce
- Owner: dolgarev
- License: mit
- Created: 2015-01-20T15:29:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-28T10:01:18.000Z (almost 10 years ago)
- Last Synced: 2024-05-28T21:28:56.025Z (6 months ago)
- Language: JavaScript
- Homepage: https://atmospherejs.com/liberation/session-getonce
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```