This should be simple, but I'm hitting a wall:
I need to take this object:
{
'a': 'foo',
'b': 'bar',
'c': 'baz',
'd': 'moo'
// etc...
'z': 'farfegnugen'
}
And REMOVE the items with keys matching an unknown list: {'a', 'c', 'f'}
or just {'a'}
...