mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 13:48:58 -05:00
7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
import structuredClonePolyfill from "@ungap/structured-clone";
|
|
|
|
const structuredCloneExport =
|
|
typeof structuredClone === "undefined" ? structuredClonePolyfill : structuredClone;
|
|
|
|
export { structuredCloneExport as structuredClone };
|