Runtime.releaseObjectReleases remote object with given id.
| Name | Type | Description |
|---|---|---|
objectId | RemoteObjectId | Identifier of the object to release. |
{
"id": 1,
"method": "Runtime.releaseObject",
"params": {
"objectId": "{\"injectedScriptId\":1,\"id\":1}"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Runtime.releaseObject', {"objectId": "{\"injectedScriptId\":1,\"id\":1}"});
console.log(result);