Created
September 24, 2014 05:43
-
-
Save krambuhl/dee548eae232ed82e1ad to your computer and use it in GitHub Desktop.
gets result of an expression.
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
function result(expr, context) { | |
return typeof expr === 'function' ? expr.apply(context) : expr; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment