Skip to content

Instantly share code, notes, and snippets.

@ninadhatkar
Created July 25, 2017 05:01
Show Gist options
  • Save ninadhatkar/38f94997361b20a36f1d8b04ca0cb773 to your computer and use it in GitHub Desktop.
Save ninadhatkar/38f94997361b20a36f1d8b04ca0cb773 to your computer and use it in GitHub Desktop.
module.exports = function(arg){
var localArg = arg;
while(typeof localArg === "function"){
localArg = localArg();
}
return localArg;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment