database-petani-mobile/node_modules/@base44/sdk/dist/utils/common.js
2026-02-23 16:39:35 +07: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));
};