@unction/flattentree
v14.14.0
Published
Takes a tree and creates a single object where the root keys are conjoined nested keys
Downloads
27
Readme
@unction/flattenTree
string => Record<string | number | symbol, B> | Map<A, B> => Record<string | number | symbol, B> | Map<A, B>
Takes a tree and creates a single object where the root keys are conjoined nested keys.
flattenTree(
"-"
)(
{
data: {
profile: {
name: "Kurtis Rainbolt-Greene",
age: 24,
},
metadata: {
interval: "10s",
},
location: "http://api.example.com/profiles/24",
}
}
)
Would return:
{
"data-profile-name": "Kurtis Rainbolt-Greene",
"data-profile-age": 24,
"data-metadata-interval": "10s",
"data-location": "http://api.example.com/profiles/24"
}