Files
2026-06-24 09:48:54 +02:00

7 lines
269 B
JavaScript

export const isNode = typeof window === "undefined";
export const isInIFrame = !isNode && window.self !== window.top;
export const generateUuid = () => {
return (Math.random().toString(36).substring(2, 15) +
Math.random().toString(36).substring(2, 15));
};