[ADDED] MacOS detect

This commit is contained in:
Eric R 2023-09-28 06:10:22 -04:00 committed by GitHub
parent 144200e315
commit 3bfcdf9c41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,3 +173,15 @@ export function autoGrowTextArea(dom: HTMLTextAreaElement) {
export function getCSSVar(varName: string) {
return getComputedStyle(document.body).getPropertyValue(varName).trim();
}
/**
* Detects if the Operation system is MacOS
*/
export function isMacOS(): boolean {
if (window !== 'undefined') {
let userAgent = window?.navigator?.userAgent
if (userAgent.indexOf('Mac') != -1) return true
}
return false
}