Skip to content

Instantly share code, notes, and snippets.

@krambuhl
Created September 24, 2014 05:43
Show Gist options
  • Save krambuhl/dee548eae232ed82e1ad to your computer and use it in GitHub Desktop.
Save krambuhl/dee548eae232ed82e1ad to your computer and use it in GitHub Desktop.
gets result of an expression.
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