Data Processing
Apply default values to an object using lodash _.defaults
defaults-objectData Processing
Find the first matching key using lodash _.findKey
find-keyData Processing
Iterate over object properties using lodash _.forIn
for-in-objectData Processing
Group items by a derived key using lodash _.groupBy
group-byData Processing
Extract a section of an array using lodash _.slice
slice-arrayData Processing
Find the insertion index in a sorted array using lodash _.sortedIndex
sorted-indexData Processing
Remove duplicates from a sorted array using lodash _.sortedUniq
sorted-uniqueData 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-while