Add pullBy
This commit is contained in:
25
snippets/pullBy.md
Normal file
25
snippets/pullBy.md
Normal file
@ -0,0 +1,25 @@
|
||||
### pullBy
|
||||
|
||||
Mutates the original array to filter out the values specified, based on a given iterator function.
|
||||
|
||||
Check if the last argument provided in a function.
|
||||
Use `Array.map()` to apply the iterator function `fn` to all array elements.
|
||||
Use `Array.filter()` and `Array.includes()` to pull out the values that are not needed.
|
||||
Use `Array.length = 0` to mutate the passed in an array by resetting it's length to zero and `Array.push()` to re-populate it with only the pulled values.
|
||||
|
||||
```js
|
||||
const pullBy = (arr, ...args) => {
|
||||
const length = args.length;
|
||||
let fn = length > 1 ? args[length - 1] : undefined;
|
||||
fn = typeof fn == 'function' ? (args.pop(), fn) : undefined;
|
||||
let argState = (Array.isArray(args[0]) ? args[0] : args).map(val => fn(val));
|
||||
let pulled = arr.filter((v, i) => !argState.includes(fn(v)));
|
||||
arr.length = 0;
|
||||
pulled.forEach(v => arr.push(v));
|
||||
};
|
||||
```
|
||||
|
||||
```js
|
||||
var myArray = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];
|
||||
pullBy(myArray, [{ 'x': 1 }, { 'x': 3 }], o => o.x); // myArray = [{ x: 2 }]
|
||||
```
|
||||
@ -177,6 +177,7 @@ promisify:adapter,function,promise
|
||||
pull:array
|
||||
pullAtIndex:array
|
||||
pullAtValue:array
|
||||
pullBy:array,function,advanced
|
||||
randomHexColorCode:utility,random
|
||||
randomIntArrayInRange:math,utility,random
|
||||
randomIntegerInRange:math,utility,random
|
||||
@ -256,4 +257,4 @@ xProd:array,math
|
||||
yesNo:utility,regexp
|
||||
zip:array
|
||||
zipObject:array,object
|
||||
zipWith:array,advanced
|
||||
zipWith:array,function,advanced
|
||||
|
||||
Reference in New Issue
Block a user