I have an object
const data = {
t1: [ {"a": 1, "a1": 2}, {"b": 3, "b1": 4}, {"c": 5, "c1": 6} ],
t2: [ {"d": 2}, {"e": 2}, {"f": 2} ]
}
I want to convert object above into an array
[ {"a": 1, "a1": 2}, {"b": 3, "b1": 4}, {"c": 5, "c1": 6} , {"d": 2}, {"e": 2}, {"f": 2}]
I can do it with this code
const join = data.t1.concat(data.t2)
Is there any function in Ramda can do the similar task ?