Web Storage Remover

The Web Storage Remover action allows you to easily remove a key/value pair from sessionStorage or localStorage. Simply supply the action with the key and select the storage area where that key is to be removed.

It is the same as calling localStorage.removeItem("<itemKey>") or sessionStorage.removeItem("<itemKey>") from javascript.

Note that no error is raised if the key does not exist.

Last updated