UNPKG

botframework-webchat-component

Version:
14 lines (10 loc) 508 B
const { userAgent } = navigator; // not DRY so that list can be alphabetical const chromium = !/Edge\//u.test(userAgent) && /Chrome\//u.test(userAgent); const edgeAnaheim = /Edg\//u.test(userAgent); const edgeUWP = /Edge\//u.test(userAgent); const firefox = /Firefox\//u.test(userAgent); const ie11 = /Trident\/7.0/u.test(userAgent); const chrome = chromium && !edgeAnaheim; const safari = !(chrome || edgeUWP || ie11 || firefox); export { chrome, chromium, edgeAnaheim, edgeUWP, firefox, ie11, safari };