• 0

internet explorer localStorage, sessionStorage, indexDb

The localStorage, sessionStorage, indexDB tabs might disappear from the Edge (F12) dev tools. If you can't find it in Debugger, you can manipulate the the webStorage from Console as those objects are defined on the window.

window.localStorage
window.sessionStorage
window.indexedDB
For example, you can clear the localStorage using the following:
window.localStorage.clear()
ls-min