🧩 Data Processing

Transform, clean, and process datasets

Back to Tools

Take While

Take items while a predicate matches using lodash _.takeWhile

Data Processing

Sorted Unique

Remove duplicates from a sorted array using lodash _.sortedUniq

Data Processing

Slice Array

Extract a section of an array using lodash _.slice

Data Processing

Sorted Index

Find the insertion index in a sorted array using lodash _.sortedIndex

Data Processing

Tail Items

Return all but the first array item using lodash _.tail

Data Processing

Take Items

Take the first N items using lodash _.take

Data Processing

Take Right Items

Take the last N items using lodash _.takeRight

Data Processing

Sorted Unique By

Remove duplicates from a sorted array using lodash _.sortedUniqBy

Data Processing

Remove By Predicate

Remove items that match a predicate using lodash _.remove

Data Processing

Reverse Array

Reverse an array using lodash _.reverse

Data Processing

Intersection Arrays

Find common values across multiple arrays using lodash _.intersection

Data Processing

Join Array

Join array items into a single string with a custom separator

Data Processing