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

3 lines
77 B
JavaScript
Raw Normal View History

2025-07-29 12:50:35 -07:00
function structuredClone(val) {
return JSON.parse(JSON.stringify(val));
}