1.0.3 • Published 6 years ago
@mezhevykh/localstorage-wrapper v1.0.3
Simple wrapper for localStorage
Installation
Download
$ npm i @mezhevykh/localstorage-wrapper
or use unpkg CDN
Usage
<script src="/path/to/@mezhevykh/localstorage-wrapper/build/index.js" type="text/javascript"></script>
API
Set item:
store.set('username', 'Test');
Get item:
store.get('username');
Get all items:
store.getAll();
Remove item:
store.remove('username');
Remove all items:
store.removeAll();
License
MIT