Skip to content

Instantly share code, notes, and snippets.

@osvaldasvalutis
Created October 2, 2017 07:33
Show Gist options
  • Save osvaldasvalutis/412e2f3a2b1cb27e89e0b203bdf5a346 to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/412e2f3a2b1cb27e89e0b203bdf5a346 to your computer and use it in GitHub Desktop.
const addToCache = (cacheName, request, response) => {
caches.open(cacheName).then(cache => cache.put(request, response));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment