Created
June 18, 2015 18:29
-
-
Save joeljackson/8b2883325b4374bad780 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setVar = function (variable, callback) { | |
beforeAll(function(){ | |
var value, called = false; | |
var memoizer = function() { | |
if (called) { | |
return value; | |
} else { | |
called = true; | |
} | |
return value = callback(); | |
}; | |
variable.result = memoizer; | |
}); | |
afterEach(function() { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment