- From: Ben Kelly <notifications@github.com>
- Date: Thu, 31 Mar 2016 07:53:23 -0700
- To: slightlyoff/ServiceWorker <ServiceWorker@noreply.github.com>
Received on Thursday, 31 March 2016 14:53:56 UTC
Does this do what you need?
```
caches.keys().then(function(cacheList) {
return caches.open(cacheList[cacheList.length - 1]);
}).then(function(cache) {
return cache.match('/a/b.txt');
});
```
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/862#issuecomment-203973761
Received on Thursday, 31 March 2016 14:53:56 UTC