iterable-without
Remove specified values from iterable, like _.without().
Remove specified values from iterable, like _.without().
Merge values of each inner iterable at corresponding position, like _.zip().
Get first index of value in iterable, like Array.indexOf().
Get indices of all values equal to specified value, like Array.indexOf().
Check is value is iterable collection (not string).
Join values in iterable into a string, like Array.join().
Get index of all values in iterable, like Object.keys().
Get last value in iterable, like Array[length-1].
Get last index of value in iterable, like Array.lastIndexOf().
Replace values in iterable with a map.
Map values in iterable to new values, like Array.map().
Get maximum value in iterable, like Math.max().
Get minimum value in iterable, like Math.min().
Filter iterable with values of specified indexes, like _.pick().
Filter iterable with values of specified index(es), like _.pick().
Pull some Values of an Iterable.
Reduce iterable to a single value, like Array.reduce().
Repeat iterable n times, like String.repeat().
Map over async/promises concurrently
Transforms ordinary objects into iterables. You can use a for of to iterate through any object's properties