1
0
mirror of https://github.com/SillyTavern/SillyTavern.git synced 2025-03-08 16:08:00 +01:00

7 lines
191 B
JavaScript
Raw Normal View History

2023-08-25 16:40:43 +03:00
import structuredClone from './index.js';
if (!("structuredClone" in globalThis)) {
console.debug("Monkey-patching structuredClone");
globalThis.structuredClone = structuredClone;
}