Skip to content

Instantly share code, notes, and snippets.

@sanks
Created June 19, 2017 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sanks/c83027a4afd94ecf94f36b4125340fec to your computer and use it in GitHub Desktop.
Save sanks/c83027a4afd94ecf94f36b4125340fec to your computer and use it in GitHub Desktop.
mandatory = () => {
throw new Error('Missing parameter!');
}
foo = (bar = mandatory()) => {
return bar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment