@stdlib/utils-while
Invoke a function while a test condition is true.
Invoke a function while a test condition is true.
Test whether all elements in a collection are falsy.
Test whether all elements in a collection fail a test implemented by a predicate function.
Test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.
Test whether every property in an object fails a test implemented by a predicate function.
Invoke a function for each element in a collection and update the collection in-place.
Invoke a function for each element in a collection and update the collection in-place, iterating from right to left.
Apply a function against an accumulator and each element in an array and return the accumulated result.
Apply a function against an accumulator and each element in an array while iterating from right to left and return the accumulated result.
Reduce the number of dimensions by one of a two-dimensional nested array by applying a function against an accumulator and each element along the innermost dimension and returning the accumulation results as a one-dimensional array.
Create an iterator which repeatedly iterates over the elements of an array-like object.
Create an iterator from an array-like object.
Create an iterator from an array-like object, iterating from right to left.
Create an iterator from a sparse array-like object.
Create an iterator from a sparse array-like object, iterating from right to left.
Create an iterator from a strided array-like object.
Create (or fill) an array from an iterator.
Create an iterator from an array-like object view.
Create an iterator from an array-like object view, iterating from right to left.
Create a readable stream from an iterator.