seagull-game/static/js/desktop-structuredclone.js

5 lines
206 B
JavaScript
Raw Permalink Normal View History

2025-07-29 12:50:35 -07:00
function structuredClone(val) {
2025-07-31 11:28:09 -07:00
var output = JSON.parse(JSON.stringify(val));
if (window.pywebview.api.debug_mode) { console.log(("structuredClone:" + val) + " => " + outval); }
return output;
2025-07-29 12:50:35 -07:00
}