1.0.2 • Published 8 years ago

yields-store v1.0.2

Weekly downloads
14,334
License
MIT
Repository
github
Last release
8 years ago

store

minimal store inspired by component/cookie

Installation

$ component install yields/store

Example

store('foo', ['baz']);
store('foo'); // > ['baz']
store({ foo: 'baz' });
store('foo'); // > 'baz'
store('foo', null);
store('foo'); // > null
store('baz', 0);
store(); // > { baz: 0 }
store(null);
store(); // > {}

API

store(key, val)

set key to val, the value will be JSON.stringify()ied.

store(obj)

store the given object.

store(key, null)

remove key.

store(key)

get key value, it will be unserialized.

store(null)

invokes localStorage.clear()

store()

get all items, they will be unserialized.

License

MIT