Skip to content

Instantly share code, notes, and snippets.

@ramubotsplash
Last active October 10, 2015 20:04
Show Gist options
  • Save ramubotsplash/8df5dc27a6853cbae75a to your computer and use it in GitHub Desktop.
Save ramubotsplash/8df5dc27a6853cbae75a to your computer and use it in GitHub Desktop.
function optional_arg(input, options, callback) {
if (!options) {
options = {};
} else if (typeof options === 'function') {
callback = options;
options = {};
}
//....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment