🧩 Data & Tables
Structured data cleanup, analysis, transformation, and table workflows
Pull Values
Remove specific values from an array using lodash _.pull
Data & TablesRemove By Predicate
Remove items that match a predicate using lodash _.remove
Data & TablesReverse Array
Reverse an array using lodash _.reverse
Data & TablesFlatten Array
Flatten array one level deep using lodash _.flatten
Data & TablesFlatten Deep Array
Flatten array completely using lodash _.flattenDeep
Data & TablesFlatten Depth Array
Flatten array to specified depth using lodash _.flattenDepth
Data & TablesFrom Pairs
Convert array of key-value pairs to object using lodash _.fromPairs
Data & TablesHead Item
Get the first element of array using lodash _.head
Data & TablesIndex Of
Find the index of a value in array using lodash _.indexOf
Data & TablesInitial Items
Get all elements except the last using lodash _.initial
Data & TablesChunk Array
Split array into chunks of specified size using lodash _.chunk
Data & TablesCompact Array
Remove falsey values from array using lodash _.compact
Data & Tables