UNPKG

@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>

9 lines (8 loc) 218 B
/** * Checks if the client is Android or not. * * @return `true` if the client is Android, or otherwise `false`. */ export function isAndroid(): boolean { return /android/i.test( navigator.userAgent ); }