I'm trying to convert an array of objects into an array of integers extracting values from those objects using Ramda.js. I need to keep just the node participants with the uid values, however, it seems that I'm not doing this correctly.
I'm want to transform this
var listObejcts = {
"participants": [
{
"entity": {
"uid": 1
}
},
{
"entity": {
"uid": 2
}
}
]
}
Run Code Online (Sandbox Code Playgroud)
to this:
{
"participants": [1, 2]
}
Run Code Online (Sandbox Code Playgroud)
I've tried the code above …