UNPKG

is-iexplorer

Version:

Check if browser is Internet Explorer

4 lines (3 loc) 146 B
'use strict'; module.exports = typeof navigator !== 'undefined' && (/MSIE/.test(navigator.userAgent) || /Trident\//.test(navigator.appVersion));