sy / public /lib /structured-clone /monkey-patch.js
吴松泽
main
c120a1c
import structuredClone from './index.js';
if (!("structuredClone" in globalThis)) {
console.debug("Monkey-patching structuredClone");
globalThis.structuredClone = structuredClone;
}