Skip to main content

isIOS

A function that checks whether the current device is an iOS device.


Code

🔗 View source code


Interface

typescript
function isIOS(): boolean

Usage

typescript
import { isIOS } from '@modern-kit/utils';

if (isIOS()) {
/* Run when the device is iOS */
}