Removes a property from an object, equivalent to delete target[propertyKey], except it won't throw if target[propertyKey] is non-configurable.
delete target[propertyKey]
target[propertyKey]
Object from which to remove the own property.
The property name.
Generated using TypeDoc
Removes a property from an object, equivalent to
delete target[propertyKey]
, except it won't throw iftarget[propertyKey]
is non-configurable.