Re: [slightlyoff/ServiceWorker] `caches.match` search order (#862)

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