dburles:session-unset

v1.0.0Published 9 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

meteor-session-unset

Adds a a simple unset method to Session.

1Session.set('foo', 'bar');
2Session.get('foo'); // => "bar"
3Session.unset('foo');
4Session.get('foo'); // => undefined