run npm tester | no errors and all test passes

This commit is contained in:
King
2018-01-27 11:05:58 -05:00
parent bfe88be8b9
commit c3643f5cac
3 changed files with 1533 additions and 3 deletions

View File

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