js-storage icon indicating copy to clipboard operation
js-storage copied to clipboard

Remove from all storage types by regex

Open sashberd opened this issue 7 years ago • 0 comments

First of all, Great library. Thanks

I faced with need that for example I need to remove all key, which starts with "payment" For this I used next code cookies.remove(cookies.keys().filter((key) => key.startsWith('payment'))); But it is not efficient one... Why not to use this one with regex in you library? For your discretion

sashberd avatar Sep 13 '17 19:09 sashberd