This does NOT: _.forEach(_.filter(_.keys(window.sessionStorage), storageKey => _.includes(storageKey, 'sub-filter')), window.sessionStorage.removeItem)
— Oh, that's just a bind problem
— RemoveItem doesn't get called with sessionStorage as this
— Pass window.sessionStorage.removeItem.bind(window.sessionStorage) to fix