🧩 Data Processing
Transform, clean, and process datasets
Take While
Take items while a predicate matches using lodash _.takeWhile
Data ProcessingSorted Unique
Remove duplicates from a sorted array using lodash _.sortedUniq
Data ProcessingSlice Array
Extract a section of an array using lodash _.slice
Data ProcessingSorted Index
Find the insertion index in a sorted array using lodash _.sortedIndex
Data ProcessingTail Items
Return all but the first array item using lodash _.tail
Data ProcessingTake Items
Take the first N items using lodash _.take
Data ProcessingTake Right Items
Take the last N items using lodash _.takeRight
Data ProcessingSorted Unique By
Remove duplicates from a sorted array using lodash _.sortedUniqBy
Data ProcessingRemove By Predicate
Remove items that match a predicate using lodash _.remove
Data ProcessingReverse Array
Reverse an array using lodash _.reverse
Data ProcessingIntersection Arrays
Find common values across multiple arrays using lodash _.intersection
Data ProcessingJoin Array
Join array items into a single string with a custom separator
Data Processing