Skip to content

Instantly share code, notes, and snippets.

@ljungmark
Created September 24, 2016 01:38
Show Gist options
  • Save ljungmark/28a8fbc07fbdadf2450a3b18aa79c2cf to your computer and use it in GitHub Desktop.
Save ljungmark/28a8fbc07fbdadf2450a3b18aa79c2cf to your computer and use it in GitHub Desktop.
Enforcing mandatory parameters
function mandatory() {
throw new Error('Missing parameter');
}
function foo(mustBeProvided = mandatory()) {
return mustBeProvided;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment