Skip to content

Instantly share code, notes, and snippets.

@Krasnov8953
Last active March 20, 2019 06:50
Show Gist options
  • Save Krasnov8953/662683fa1ab7976b23cad604edfc4c41 to your computer and use it in GitHub Desktop.
Save Krasnov8953/662683fa1ab7976b23cad604edfc4c41 to your computer and use it in GitHub Desktop.
function memoize(func) {
const memo = {};
return function() {
const args = [...arguments];
if (args in memo) {
return memo[args];
}
else {
return (memo[args] = func.apply(this, args));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment