For example, I have a example function, it has two parameters a and b.
var example = function(a, b){...}
Now I want to wrap this function, do some changes to parameter b, how can I get a in my wrap function?
example = _.wrap(example, function(original)){
//do some changes to b
....
original(?, b)//how can i get a
}