A Cordova plugin to persist the localstorage. Sometimes the localstorage in webkit gets wiped and the user looses everything stored there
npm install cordova-plugin-persist-localstorage```
cordova plugin add cordova-plugin-persist-localstorage
PersistLocalstorage.save(
() => console.log('successful'),
() => console.error('did not work')
);
``