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;