🧩 Data Processing

Transform, clean, and process datasets

Back to Tools

Pull Values

Remove specific values from an array using lodash _.pull

Data Processing

Last Item

Get the last item from an array using lodash _.last

Data Processing

Nth Item

Get the item at a specific index using lodash _.nth

Data Processing

Initial Items

Get all elements except the last using lodash _.initial

Data Processing

Flatten Depth Array

Flatten array to specified depth using lodash _.flattenDepth

Data Processing

Flatten Array

Flatten array one level deep using lodash _.flatten

Data Processing

Head Item

Get the first element of array using lodash _.head

Data Processing

Flatten Deep Array

Flatten array completely using lodash _.flattenDeep

Data Processing

Index Of

Find the index of a value in array using lodash _.indexOf

Data Processing

From Pairs

Convert array of key-value pairs to object using lodash _.fromPairs

Data Processing

Drop While

Drop items from array while predicate is true using lodash _.dropWhile

Data Processing

Chunk Array

Split array into chunks of specified size using lodash _.chunk

Data Processing