Skip to content

Instantly share code, notes, and snippets.

View Abdul007Malik's full-sized avatar
💭
I may be slow to respond.

Abdul Malik Abdul007Malik

💭
I may be slow to respond.
View GitHub Profile
// A more functional memoizer
//We can beef up our module by adding functions later
var Memoizer = (function(){
//Private data
var cache = {};
//named functions are awesome!
function cacher(func){
return function(){
var key = JSON.stringify(arguments);