vtils

Home > utils > inIOS

inIOS() function

检查是否在 iOS 设备中。

Signature:

export declare function inIOS(): boolean;

Returns:

boolean

返回检查结果

Example

if (inIOS()) {
  console.log('你在 iOS 设备中')
}