MCPcopy Create free account
hub / github.com/nodejs/node-addon-api / Delete

Method Delete

napi-inl.h:1784–1788  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1782}
1783
1784inline MaybeOrValue<bool> Object::Delete(napi_value key) const {
1785 bool result;
1786 napi_status status = napi_delete_property(_env, _value, key, &result);
1787 NAPI_RETURN_OR_THROW_IF_FAILED(_env, status, result, bool);
1788}
1789
1790inline MaybeOrValue<bool> Object::Delete(Value key) const {
1791 bool result;

Calls

no outgoing calls

Tested by

no test coverage detected