github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/ui/src/utils/common.js (about) 1 export function getElectron() { 2 const userAgent = navigator.userAgent.toLowerCase() 3 console.log(`userAgent ${userAgent}`) 4 5 if (userAgent.indexOf('electron') > -1){ 6 return true 7 } 8 9 return false 10 }