Files
30-seconds-of-code/test/dropElements/dropElements.js
2018-01-26 12:23:18 +02:00

5 lines
136 B
JavaScript

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