Currently using localStorage.getItem/setItem, I’m wondering if it’s worthwhile to switch to http://ionicframework.com/docs/v2/api/platform/storage/LocalStorage/
The native APIs are more straight forward, localStorage.get(‘key’) returns the value if exists while new Storage().get() returns a promise which could be an overhead.
What’s the benefit to use new Storage() there?