Skip to content

Instantly share code, notes, and snippets.

@qzm
Created April 17, 2017 06:25
Show Gist options
  • Save qzm/bce41064c57f7ba691ad5981ef7e8cc1 to your computer and use it in GitHub Desktop.
Save qzm/bce41064c57f7ba691ad5981ef7e8cc1 to your computer and use it in GitHub Desktop.
将纯函数,做cache
function cached (fn) {
var cache = Object.create(null);
return (function cachedFn (str) {
var 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