Creates a function that accepts up to one argument, ignoring any additional arguments.
The function to cap arguments for.
Returns the new function.
_.map(['6', '8', '10'], _.unary(parseInt)); // => [6, 8, 10]