UNPKG

@gleefullychill/lotide

Version:

A library based off of lodash for a student project

11 lines 221 B
const takeUntil = function(array, callback) { let theArr = []; for (const item of array) { if (!callback(item)) { theArr.push(item); } else { return theArr; } } }; module.exports = takeUntil;