RSS Git Download  Clone
Raw Blame History
export function isMobile() {
    try {
        document.createEvent("TouchEvent");
        return true;
    } catch (e) {
        return false;
    }
}