Skip to content

Instantly share code, notes, and snippets.

@ufocoder
Last active January 20, 2019 11:53
Show Gist options
  • Save ufocoder/3ea23f8414c0cf0320f96134023640b5 to your computer and use it in GitHub Desktop.
Save ufocoder/3ea23f8414c0cf0320f96134023640b5 to your computer and use it in GitHub Desktop.
const memoized = fn => {
const cache = new WeakMap()
return (...args) => {
if (!cache.has(args)) {
cache.set(args, fn(...args))
}
return cache.get(args)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment