run npm tester | no errors and all test passes
This commit is contained in:
5
test/dropWhile/dropWhile.js
Normal file
5
test/dropWhile/dropWhile.js
Normal 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
|
||||
Reference in New Issue
Block a user