define(['jquery','jquery/jquery-storageapi',],function($){'use strict';return{storage:$.localStorage,pushItem:function(key,value){try{this.storage.set(key,JSON.stringify(value));}catch(e){console.error(e);}},getItem:function(key){return this.storage.get(key);},removeItem:function(key){this.storage.remove(key);}}});