mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -6,9 +6,7 @@
|
||||
* @returns {Function} Returns the new capped function.
|
||||
*/
|
||||
function baseUnary(func) {
|
||||
return function(value) {
|
||||
return func(value);
|
||||
};
|
||||
return value => func(value);
|
||||
}
|
||||
|
||||
export default baseUnary;
|
||||
|
||||
Reference in New Issue
Block a user