eslint update

63724a2b383aaa2bcaa5ca4009f65062f45c39cd

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Showing whitespace changes
public/scripts/tool-calling.js+1 -1
@@ -213,7 +213,7 @@ export class ToolManager {
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;
217217
218 const deltaValue = delta[key];218 const deltaValue = delta[key];
219 const targetValue = target[key];219 const targetValue = target[key];