Creates a function that invokes func with arguments reversed.
func
The function to flip arguments for.
Returns the new function.
var flipped = _.flip(function() { return _.toArray(arguments);});flipped('a', 'b', 'c', 'd');// => ['d', 'c', 'b', 'a'] Copy
var flipped = _.flip(function() { return _.toArray(arguments);});flipped('a', 'b', 'c', 'd');// => ['d', 'c', 'b', 'a']
Creates a function that invokes
func
with arguments reversed.