Ramda remove : Ramda Repl link
The following is the given example, it removes specific numbers from an Array:
R.remove(2, 3, [1,2,3,4,5,6,7,8]); //=> [1,2,6,7,8]
Now I created an Array of objects, one being empty:
var objArray = [{id: 1, name: 'Leon'},{id: 2, name: 'Paulo'},{}];
When I try:
R.remove({}, objArray);
or
R.remove(R.isEmpty, objArray);
It returns a function:
Why would that be you suppose?
