ran npm run tdd & generated TDD
This commit is contained in:
8
test/pullAtValue/pullAtValue.js
Normal file
8
test/pullAtValue/pullAtValue.js
Normal file
@ -0,0 +1,8 @@
|
||||
module.exports = (arr, pullArr) => {
|
||||
let removed = [],
|
||||
pushToRemove = arr.forEach((v, i) => (pullArr.includes(v) ? removed.push(v) : v)),
|
||||
mutateTo = arr.filter((v, i) => !pullArr.includes(v));
|
||||
arr.length = 0;
|
||||
mutateTo.forEach(v => arr.push(v));
|
||||
return removed;
|
||||
};
|
||||
Reference in New Issue
Block a user