is-array-of-length
Returns true if a value is an array containing the specified number of elements.
Updated by @lamansky
new-object
Creates an Object from a collection of key-value pairs or key-descriptor pairs.
Updated by @lamansky
entries-iterator
Returns an iterator of the key-value pairs of an Object, Map, Array, or Typed Array. Useful for when you need the entries of a collection object but aren’t sure what type of …
Updated by @lamansky
values-iterator
Returns an iterator of the values of an Array, Iterator, Object, Map, Set, or Typed Array. Useful for when you need the values of a collection object but aren’t sure what type of …
Updated by @lamansky
filter-iter
Filters an iterable object so that it only yields values which pass a test function.
Updated by @lamansky
entries-array
Returns an array of the key-value pairs of an Object, Map, Array, or Typed Array. Useful for when you need the entries of a collection object but aren’t sure what type of …
Updated by @lamansky