mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -25,7 +25,7 @@ import last from './last.js';
|
||||
* _.intersectionWith(objects, others, _.isEqual);
|
||||
* // => [{ 'x': 1, 'y': 2 }]
|
||||
*/
|
||||
var intersectionWith = baseRest(function(arrays) {
|
||||
var intersectionWith = baseRest(arrays => {
|
||||
var comparator = last(arrays),
|
||||
mapped = arrayMap(arrays, castArrayLikeObject);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user