array-like
There are 71 repositories under array-like topic.
dcousens/is-sorted
A small module to check if an Array is sorted
rsokl/phantom-tensors
Tensor-like types – with variadic shapes – that support both static and runtime type checking, and convenient parsing
munrocket/overload-bracket
Overloading square bracket operator [] in javascript and other array methods to any object with container using es6 proxy.
thadeu/recollect-array
🔃 Simple wrapper to filter array using Ruby and simple predicate conditions
stdlib-js/assert-contains
Test if an array-like value contains a search value.
stdlib-js/assert-is-symbol-array
Test if a value is an array-like object containing only symbols.
stdlib-js/streams-node-from-array
Create a readable stream from an array-like object.
stdlib-js/utils-async-any-by-right
Test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
stdlib-js/assert-is-empty-array-like-object
Test if a value is an empty array-like object.
stdlib-js/assert-tools-array-like-function
Return a function which tests if every element in an array-like object passes a test condition.
stdlib-js/iter-to-array-view-right
Fill an array-like object view from right to left with values returned from an iterator.
stdlib-js/streams-node-from-circular-array
Create a readable stream from a circular array-like object.
stdlib-js/streams-node-from-strided-array
Create a readable stream from a strided array-like object.
stdlib-js/utils-any
Test whether at least one element in a collection is truthy.
stdlib-js/utils-async-any-by
Test whether at least one element in a collection passes a test implemented by a predicate function.
stdlib-js/utils-async-every-by-right
Test whether all elements in a collection pass a test implemented by a predicate function, iterating from right to left.
stdlib-js/utils-async-for-each
Invoke a function once for each element in a collection.
stdlib-js/utils-every
Test whether all elements in a collection are truthy.
stdlib-js/utils-index-of
Return the first index at which a given element can be found.
stdlib-js/utils-none
Test whether all elements in a collection are falsy.
stdlib-js/array-base-accessor
Create a minimal array-like object supporting the accessor protocol from another array-like object.
stdlib-js/array-base-cuany-by-right
Cumulatively test whether at least one array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left.
stdlib-js/array-base-cuevery-by-right
Cumulatively test whether every array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left.
stdlib-js/array-base-cunone-by-right
Cumulatively test whether no array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left.
stdlib-js/array-base-cusome-by-right
Cumulatively test whether at least `n` elements in a provided array pass a test implemented by a predicate function, while iterating from right-to-left.
stdlib-js/array-base-to-accessor-array
Convert an array-like object to a minimal array-like object supporting the accessor protocol.
stdlib-js/assert-is-array-like
Test if a value is array-like.
stdlib-js/assert-is-array-like-object
Test if a value is an array-like object.
stdlib-js/assert-is-falsy-array
Test if a value is an array-like object containing only falsy values.
stdlib-js/assert-is-function-array
Test if a value is an array-like object containing only functions.
stdlib-js/assert-is-number-array
Test if a value is an array-like object of numbers.
stdlib-js/assert-is-truthy-array
Test if a value is an array-like object containing only truthy values.
stdlib-js/iter-to-array-view
Fill an array-like object view with values returned from an iterator.
stdlib-js/utils-any-by
Test whether at least one element in a collection passes a test implemented by a predicate function.
stdlib-js/utils-any-by-right
Test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
stdlib-js/utils-bifurcate
Split values into two groups.