Spaces:
Running
Running
File size: 191 Bytes
b82d373 |
1 2 3 4 5 6 7 |
import structuredClone from './index.js';
if (!("structuredClone" in globalThis)) {
console.debug("Monkey-patching structuredClone");
globalThis.structuredClone = structuredClone;
}
|