outsystems-ui
Version:
OutSystems UI Framework
17 lines (16 loc) • 449 B
text/typescript
/**
* Namespace for all public methods to access and use the OutSystemsUI components.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
namespace OutSystems.OSUI.Utils {
/**
* Function that identifies the browser being used
*
* @export
* @param {string} [useragent]
* @return {*} {string}
*/
export function GetBrowser(useragent = ''): string {
return OSFramework.OSUI.Helper.DeviceInfo.GetBrowser(useragent);
}
}