Something about Cookies.removeAll(); to clear cookies.
Also, if you don't want to import a new module, you could simply use something like this in your own side:
Object.keys(Cookies.get()).forEach(function(cookie) {
Cookies.remove(cookie, attributes);
});
I don't see the need of having this built-in in the lib, since not everyone has the use case of removing all cookies visible to the current page, that is requirement specific and should be explicit in the application code.
I will close for now and consider it as a duplicate, but we can reopen this if you have any new information that might change what we know.
Most helpful comment
Also, if you don't want to import a new module, you could simply use something like this in your own side:
I don't see the need of having this built-in in the lib, since not everyone has the use case of removing all cookies visible to the current page, that is requirement specific and should be explicit in the application code.