0.0.0 • Published 11 years ago

is-ie v0.0.0

Weekly downloads
109
License
-
Repository
github
Last release
11 years ago

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
}