Files
30-seconds-of-code/test/dropElements/dropElements.js
2018-01-09 06:09:49 -05:00

4 lines
108 B
JavaScript

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