SecureChat / src /lib /utils.js
ausername-12345
reuse register endpoint for google setup
73d7d26
Raw
History Blame Contribute Delete
189 Bytes
import { clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs))
}
export const isIframe = window.self !== window.top;