@ryusei/code
Version:
<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>
11 lines (10 loc) • 316 B
text/typescript
/**
* Checks if the client is iOS or not.
*
* @return `true` if the client is iOS, or otherwise `false`.
*/
export function isIOS(): boolean {
const { userAgent } = navigator;
return /iPad|iPhone|iPod/.test( userAgent )
|| ( userAgent.indexOf( 'Mac' ) > -1 && navigator.maxTouchPoints > 1 );
}