| 213 | static #applyToolCallDelta(target, delta) { | 213 | static #applyToolCallDelta(target, delta) { |
| 214 | for (const key in delta) { | 214 | for (const key in delta) { |
| 215 | if (!delta.hasOwnProperty(key)) continue; | 215 | if (!delta.hasOwnProperty(key)) continue; |
| 216 | if (key === "__proto__" || key === "constructor") continue; | 216 | if (key === '__proto__' || key === 'constructor') continue; |
| 217 | | 217 | |
| 218 | const deltaValue = delta[key]; | 218 | const deltaValue = delta[key]; |
| 219 | const targetValue = target[key]; | 219 | const targetValue = target[key]; |