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) 197 B
/** * Checks is the platform is Mac or not. * * @return `true` if the platform is Mac, or otherwise `false`. */ export function isMac(): boolean { return /Mac/i.test( navigator.platform ); }