Skip to content
On this page

getPlatform

获取平台的信息

使用

js
import { getPlatform } from '@pinos-ui/utils'

代码示例

参数说明

参数名说明类型必传默认值
diffWxBrowser是否区分微信浏览器booleanfalse

类型声明

js
type Platform = 'ios' | 'android' | 'pc' | 'android-wx' | 'ios-wx';
export declare const getPlatform: (diffWxBrowser?: boolean) => Platform