A JavaScript storing library
npm install --save vanilla-store
Store.create(String category, Array items|Object item);
Store.update(String category, Array items|Object item);
Store.get(String category, String id);
Store.remove(String category, Array items|Object item);
Store.clean(String category);
If you want to store nested objects with Store please make sure to use a deep
object extend function. You can do so by providing a global extend function,
include jQuery or Lodash/Underscore.
Please run npm run test. Tests are written utilizing Jasmine.
MIT - 2015, Hans Christian Reinl