Skip to content
/ is-ie Public

Check if your code is running on IE, and what version you're running from.

License

Notifications You must be signed in to change notification settings

hughsk/is-ie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

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
}

About

Check if your code is running on IE, and what version you're running from.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published