Simplify differenceBy
This commit is contained in:
@ -6,7 +6,7 @@ Create a `Set` by applying `fn` to each element in `b`, then use `Array.prototyp
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
const differenceBy = (a, b, fn) => {
|
const differenceBy = (a, b, fn) => {
|
||||||
const s = new Set(b.map(v => fn(v)));
|
const s = new Set(b.map(fn));
|
||||||
return a.filter(x => !s.has(fn(x)));
|
return a.filter(x => !s.has(fn(x)));
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
const differenceBy = (a, b, fn) => {
|
const differenceBy = (a, b, fn) => {
|
||||||
const s = new Set(b.map(v => fn(v)));
|
const s = new Set(b.map(fn));
|
||||||
return a.filter(x => !s.has(fn(x)));
|
return a.filter(x => !s.has(fn(x)));
|
||||||
};
|
};
|
||||||
module.exports = differenceBy;
|
module.exports = differenceBy;
|
||||||
|
|||||||
Reference in New Issue
Block a user