Collection.until()
Stop iterating the collection once given filter returns true.
Syntax
Parameters
filterFunction: Function
function (item) {} that when returns a truthy value will stop the rest of the iteration
bIncludeStopEntry: Boolean
(Optional) If true, the collection will include the stop entry on which the filter function returns true
Remarks
Works similar to limit() but rather than specifying a number, you specify a filter function to execute on each item and when it returns true, the iteration will stop.
Sample
Return Value
This Collection instance (this)