Skip to content

Instantly share code, notes, and snippets.

@marka2g
Forked from cameronbourke/memoize.es6.js
Created August 30, 2017 18:18
Show Gist options
  • Select an option

  • Save marka2g/285fe8b757231b0c3be9d21788b56f0f to your computer and use it in GitHub Desktop.

Select an option

Save marka2g/285fe8b757231b0c3be9d21788b56f0f to your computer and use it in GitHub Desktop.
const memoize = (fn) => {
let cache = {}, key;
return (...args) => {
key = JSON.stringify(args);
return cache[key] || (cache[key] = fn.call(null, ...args));
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment