introduction of items

This commit is contained in:
2025-07-31 11:28:09 -07:00
parent 68ef7c1591
commit eb9e9476ef
10 changed files with 133 additions and 12 deletions

View File

@@ -1,3 +1,5 @@
function structuredClone(val) {
return JSON.parse(JSON.stringify(val));
var output = JSON.parse(JSON.stringify(val));
if (window.pywebview.api.debug_mode) { console.log(("structuredClone:" + val) + " => " + outval); }
return output;
}