Skip to content

Instantly share code, notes, and snippets.

@janneh
Created June 1, 2016 05:15
Show Gist options
  • Save janneh/c5f7fcb4a05552ebaa3074d479285cf0 to your computer and use it in GitHub Desktop.
Save janneh/c5f7fcb4a05552ebaa3074d479285cf0 to your computer and use it in GitHub Desktop.
Simple cache
const cache = new Map()
service.get = uri => {
if (!cache.has(uri)) {
cache.set(uri, fetch(uri))
}
return cache.get(uri)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment