Seeking Alternative to Ramda's `omit` for Removing Multiple Keys in Effect
Hey all.
I'm replacing some ramda functions for Effect ones. One in question is
I found
I'm replacing some ramda functions for Effect ones. One in question is
omit that I can pass an array of keys to be deleted from the object.I found
Record.remove but only allow 1 key. Am I missing something here or is there another function that allows me to remove multiple keys from object?