/** * @category Storage */ export function removeStorage(name: string, isSessionStorage = false) { const storage = isSessionStorage ? window.sessionStorage : window.localStorage; return storage.removeItem(name); }