Blame Raw
· · · 6 lines (191 B)
0 contributors
1import structuredClone from './index.js';
2
3if (!("structuredClone" in globalThis)) {
4 console.debug("Monkey-patching structuredClone");
5 globalThis.structuredClone = structuredClone;
6}