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) 263 B
/** * Checks is the browser is based on the Gecko engine or not. * * @return `true` if the browser is the browser is based on the Gecko (Firefox), or otherwise `false`. */ export function isGecko(): boolean { return !! window[ 'InstallTrigger' ]; }