Skip to content
On this page

浏览器信息

getBrowserInfo

示例代码
ts
import { getBrowserInfo } from '@jsxiaosi/utils';

  getBrowserInfo(); 
  // { "browserName": "Chrome", "browserVersion": "112.0.0.0", "operatingSystem": "Mac OS" }

返回类型 BrowserInfo

BrowserInfo:

参数说明类型
browserName浏览器内核名称string
browserVersion浏览器内核版本string
operatingSystem系统运行环境string

getDeviceType

示例代码
ts
import { getDeviceType } from '@jsxiaosi/utils';

  getDeviceType(); // 'Mobile' / 'Desktop'

返回类型 DeviceType

DeviceType:

参数说明类型
Mobile移动端string
DesktopPC端string