Skip to content

Instantly share code, notes, and snippets.

@krambuhl
Last active August 29, 2015 14:06
Show Gist options
  • Save krambuhl/a983d5a4853033081c04 to your computer and use it in GitHub Desktop.
Save krambuhl/a983d5a4853033081c04 to your computer and use it in GitHub Desktop.
gets first argument that is not undefined;
function firstdef() {
var isDefined = function(arg) { return !_.isUndefined(arg); };
return _.find(arguments, isDefined);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment