export function mobile()

in src/js/modules/belt.js [255:263]


export function mobile() {

    var windowWidth = Math.max(
        document.documentElement.clientWidth,
        window.innerWidth || 0
    )

    return windowWidth < 610 ? true : false
}