UNPKG

@progress/kendo-angular-common

Version:

Kendo UI for Angular - Utility Package

29 lines (28 loc) 1.05 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { detectDesktopBrowser, detectMobileOS } from "@progress/kendo-common"; /** * @hidden * * Returns true if the used browser is Safari. */ export const isSafari = (userAgent) => { return detectDesktopBrowser(userAgent).safari || (detectMobileOS(userAgent) && detectMobileOS(userAgent).browser === 'mobilesafari'); }; /** * @hidden * * Returns true if the used browser is Firefox. */ export const isFirefox = (userAgent) => { const desktopBrowser = detectDesktopBrowser(userAgent); const mobileOS = detectMobileOS(userAgent); return desktopBrowser?.mozilla || mobileOS?.browser === 'firefox'; }; /** * @hidden */ export const firefoxMaxHeight = 17895697;