Skip to content

Instantly share code, notes, and snippets.

@weotch
Created October 14, 2013 22:20
Show Gist options
  • Save weotch/6983217 to your computer and use it in GitHub Desktop.
Save weotch/6983217 to your computer and use it in GitHub Desktop.
Example of setting defaults using underscore
function(options) {
options = _.defaults(options || {}, {
offset: 0,
hesitate: false
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment