Skip to content

Instantly share code, notes, and snippets.

@jacky810124
Created March 29, 2018 07:55
Show Gist options
  • Save jacky810124/eb68177bf684b57a5c3a4360cb75692c to your computer and use it in GitHub Desktop.
Save jacky810124/eb68177bf684b57a5c3a4360cb75692c to your computer and use it in GitHub Desktop.
PWA Day06 - cache matchAll
caches
.open('example-cache')
.then(function(cache) {
cache
.matchAll('/images/')
.then(function(response) {
response.forEach(function(element, index, array) {
cache.delete(element)
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment