Codacy style changes for test files

This commit is contained in:
Angelos Chalaris
2018-08-02 13:32:50 +03:00
parent 8ca98a1569
commit ab51b02f40
338 changed files with 2641 additions and 2305 deletions

View File

@ -1,10 +1,11 @@
const pullAtIndex = (arr, pullArr) => {
let removed = [];
let pulled = arr
.map((v, i) => (pullArr.includes(i) ? removed.push(v) : v))
.filter((v, i) => !pullArr.includes(i));
arr.length = 0;
pulled.forEach(v => arr.push(v));
return removed;
let removed = [];
let pulled = arr
.map((v, i) => (pullArr.includes(i) ? removed.push(v) : v))
.filter((v, i) => !pullArr.includes(i));
arr.length = 0;
pulled.forEach(v => arr.push(v));
return removed;
};
module.exports = pullAtIndex;