is-ie
v0.0.0
Published
ERROR: No README.md file found!
Downloads
5,197
Readme
is-ie
Gives you the version of Internet Explorer your code is running in as a float,
or null
if running in Node/Chrome/Firefox/etc.
Installation
npm install is-ie
Usage
var version = require('is-ie')
if (version === null) {
start()
} else
if (version <= 9) {
throw new Error
}