is there a way in ramda to remove multiple object in ramda.
Here's my array
const availableFeatures = [
{
id: 1,
name: "TEST 1",
},
{
id: 2,
name: "TEST 2",
},
{
id: 3,
name: "TEST 3"
}
]
I want to remove the object that contains id 1 and 2.