gsklee / ngStorage

localStorage and sessionStorage done right for AngularJS.
MIT License
2.33k stars 461 forks source link

Get all keys stored #225

Closed furyscript closed 8 years ago

furyscript commented 8 years ago

How can I get all stored keys in localstorage? If there isn't this feature can be implemented??

egilkh commented 8 years ago

Maybe Object.keys($localStorage) can help you? :)

Note that Object.keys will also give you $reset and $default (functions on the $localStorage object). Which you'll have to filter out if you do not want them.

Alternative $window.localStorage provides access to Storage item.

furyscript commented 8 years ago

Sure I forgot that $localStorage is an object :( thank you!