Runtime.removeBindingThis method does not remove binding function from global object but unsubscribes current runtime agent from Runtime.bindingCalled notifications.
| Name | Type | Description |
|---|---|---|
name | string |
{
"id": 1,
"method": "Runtime.removeBinding",
"params": {
"name": "example-name"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Runtime.removeBinding', {"name": "example-name"});
console.log(result);