Skip to content

Instantly share code, notes, and snippets.

@Arwid
Last active August 29, 2015 14:27
Show Gist options
  • Save Arwid/9cba116c87f64f6d90c6 to your computer and use it in GitHub Desktop.
Save Arwid/9cba116c87f64f6d90c6 to your computer and use it in GitHub Desktop.
lodash extension to evaluate expressions
// lodash extension to evaluate expressions
_.eval = function(expression, scope) {
return _.template("<%= " + expression + " %>")(scope);
}
_.eval = function(expression) {
return _.template("<%= " + expression + " %>");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment