I've got a lot of function that act as an intermediate entry-point for other functions (i.e functions that just call other functions).
How can I call the inner function with the same arguments as the parent function without respecifying them?
var foo = function(arg1, arg2) { fooBar(argumentsOfFoo); }
A possible solution is passing arrays but I'd like to avoid that.