0.0.2 • Published 8 years ago

required-argument v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

required-argument

Pass this function as a default argument to throw an error when the argument is undefined

Example

const required = require('required-argument');

function myFunc(a = required()){
  // do stuff
}

myFunc(); // Error: Missing argument in function "myfunc"

Future

I'm experimenting with parsing the code to let you know which argument is missing but it's still not perfect yet. If you have any ideas on how to implement that or any other things you'd like to add please open an issue or PR.

Credits

Inspired by Six nifty ES6 tricks by @rauschma