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) 209 B
/** * Checks is the browser is IE or not. * * @return `true` if the browser is IE, or otherwise `false`. */ export function isIE(): boolean { return /*@cc_on!@*/false || !! document[ 'documentMode' ]; }