pub unsafe extern "C-unwind" fn JSObjectDeleteProperty(
ctx: JSContextRef,
object: JSObjectRef,
property_name: JSStringRef,
exception: *mut JSValueRef,
) -> bool
Available on crate features
JSBase
and JSObjectRef
only.Expand description
Deletes a property from an object.
Parameter ctx
: The execution context to use.
Parameter object
: The JSObject whose property you want to delete.
Parameter propertyName
: A JSString containing the property’s name.
Parameter exception
: A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
Returns: true if the delete operation succeeds, otherwise false (for example, if the property has the kJSPropertyAttributeDontDelete attribute set).
§Safety
ctx
must be a valid pointer.object
must be a valid pointer.property_name
must be a valid pointer.exception
must be a valid pointer.