filter keys from object using ramda

JavaScript
const filteredObject = R.omit(['key1', 'key2'], originalObject);
Source

Also in JavaScript: