Skip to content

Instantly share code, notes, and snippets.

@suhaotian
Created December 29, 2016 08:58
Show Gist options
  • Save suhaotian/cb2ba66252f0591d0d49aa158389ca95 to your computer and use it in GitHub Desktop.
Save suhaotian/cb2ba66252f0591d0d49aa158389ca95 to your computer and use it in GitHub Desktop.
function cached(fn) {
const cache = Object.create(null)
return function cachedFn(str) {
const hit = cache[str]
return hit || (cache[str] = fn(str))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment