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
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