mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 01:57:50 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -31,9 +31,7 @@ function unzipWith(array, iteratee) {
|
||||
if (iteratee == null) {
|
||||
return result;
|
||||
}
|
||||
return arrayMap(result, function(group) {
|
||||
return apply(iteratee, undefined, group);
|
||||
});
|
||||
return arrayMap(result, group => apply(iteratee, undefined, group));
|
||||
}
|
||||
|
||||
export default unzipWith;
|
||||
|
||||
Reference in New Issue
Block a user