I have an object and I want to copy this object and remove every instance of description
from it. What is an elegant way of doing this?
here's how the object looks:
{
properties: {
a: {
value: foo,
description: bar
},
b: {
value: foo,
description: bar
}
}