Within our proxy detection functions, this updates the Blink stack line to match Chrome 102.
// "Proxy." is no longer in the stack line "at Proxy.[Symbol.hasInstance]"
proxy = new Proxy(Function.prototype.toString, {})
proxy instanceof proxy
// "Function." is no longer in the stack line "at Function.set __proto__ [as __proto__]"
api = Function.prototype.toString
api.__proto__ = api
api.toString()
Within our proxy detection functions, this updates the Blink stack line to match Chrome 102.