Files
formbricks/apps/web/lib/pollyfills/structuredClone.ts
T
2025-05-13 16:40:16 +00:00

7 lines
234 B
TypeScript

import structuredClonePolyfill from "@ungap/structured-clone";
const structuredCloneExport =
typeof structuredClone === "undefined" ? structuredClonePolyfill : structuredClone;
export { structuredCloneExport as structuredClone };