Tiny refactor of sample caching service worker (#440)

* use Object.values function

* make Set instead of using indexOf
This commit is contained in:
mohawk2 2019-03-06 15:38:06 +00:00 коммит произвёл Jeffrey Posnick
Родитель 124c26e9f4
Коммит 8597e80eaf
1 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -33,16 +33,13 @@ self.addEventListener('activate', function(event) {
// Delete all caches that aren't named in CURRENT_CACHES.
// While there is only one cache in this example, the same logic will handle the case where
// there are multiple versioned caches.
var expectedCacheNames = Object.keys(CURRENT_CACHES).map(function(key) {
return CURRENT_CACHES[key];
});
var expectedCacheNamesSet = new Set(Object.values(CURRENT_CACHES));
event.waitUntil(
caches.keys().then(function(cacheNames) {
return Promise.all(
cacheNames.map(function(cacheName) {
if (expectedCacheNames.indexOf(cacheName) === -1) {
// If this cache name isn't present in the array of "expected" cache names, then delete it.
if (!expectedCacheNamesSet.has(cacheName)) {
// If this cache name isn't present in the set of "expected" cache names, then delete it.
console.log('Deleting out of date cache:', cacheName);
return caches.delete(cacheName);
}