I want to accept optional parameters when creating a function to handle a command in the JQuery Terminal plug-in.
eg.
Foo
-> returns a list of Foo's
Foo 1234
-> returns details of Foo 1234 only
Foo Active
-> returns a list of Active Foo's
However, if I make my function header like this:
Foo: function() { ... }
...and then issue the command...
Foo 1234
...JQuery Terminal complains "[Arity] Wrong number of arguments. Function 'Foo' expects 0 got 1!".
The same goes for...
Foo: function(p1) { ... }
The command...
Foo
...causes JQuery Terminal to respond with "[Arity] Wrong number of arguments. Function 'Foo' expects 1 got 0!".
A good workaround is to use a have a parameter but inside the function use an if-else statement to execute code when no parameter is passed, with
checkArity: false
in options.Take this for example: