I need to find the fastest way to remove all $meta properties and their values from an object, for example:
$meta
{ \"part_one\": { \"name\": \"
As @floor commented above:
JSON.parse(JSON.stringify(obj, (k,v) => (k === '$meta')? undefined : v))