Data Processing
Remove duplicates from a sorted array using lodash _.sortedUniqBy
sorted-unique-byData Processing
Return all but the first array item using lodash _.tail
tail-itemsData Processing
Take the first N items using lodash _.take
take-itemsData Processing
Take the last N items using lodash _.takeRight
take-right-itemsData Processing
Take items while a predicate matches using lodash _.takeWhile
take-whileData Processing
Remove duplicates from an array using lodash _.uniq
uniq-arrayData Processing
Remove duplicates from an array using lodash _.uniqBy with a property path
uniq-byData Processing
Remove duplicates using lodash _.uniqWith and deep equality
uniq-withData Processing
Split grouped arrays using lodash _.unzip
unzip-arraysData Processing
Remove specified values from an array using lodash _.without
without-valuesData Processing
Compute the symmetric difference of arrays using lodash _.xor
xor-arraysData Processing
Combine arrays by index using lodash _.zip
zip-arrays