Skip to content

Collection.until()

David Fahlander edited this page May 8, 2014 · 6 revisions

Ignores items occurring after given filter returns true.

Syntax

collection.until(filterFunction, bIncludeStopEntry)

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 similary 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.

Return Value

This Collection instance (this)

Clone this wiki locally