← Back to Debugger domain

Debugger.stepOut

Steps out of the function call.

Domain: Debugger stable

Example Request

{
  "id": 1,
  "method": "Debugger.stepOut"
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Debugger.stepOut');
console.log(result);