run npm tester | no errors and all test passes

This commit is contained in:
King
2018-01-27 11:05:58 -05:00
parent ec89b7d736
commit 59134bed0d
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