remove human error mistakes from editing file dropEle and using dropWhile

This commit is contained in:
King
2018-01-27 11:02:54 -05:00
parent 32e5bd9193
commit 6893d2ce9b
4 changed files with 0 additions and 37 deletions

View File

@ -1,5 +0,0 @@
const dropWhile = (arr, func) => {
while (arr.length > 0 && !func(arr[0])) arr = arr.slice(1);
return arr;
};
module.exports = dropWhile