https://github.com/Dafrok/fuck-ie
Check whether your browser is a f**king specified version of IE or not.
https://github.com/Dafrok/fuck-ie
Last synced: over 1 year ago
JSON representation
Check whether your browser is a f**king specified version of IE or not.
- Host: GitHub
- URL: https://github.com/Dafrok/fuck-ie
- Owner: Dafrok
- Created: 2016-03-14T14:31:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-12T02:32:56.000Z (over 8 years ago)
- Last Synced: 2025-03-15T13:22:26.433Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 45
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# fuck-ie
Check whether your browser is a f**king specified version of IE.
## Install
```
$ npm i fuck-ie
```
## Usage
```javascript
var fuckIE = require('fuck-ie')
// If your browser is IE6, the returned value will be true.
var isIE_6 = fuckIE(6)
// If your browser is IE6 or IE7 or IE8, the returned value will be true.
var isIE_6_7_8 = fuckIE(6, 7, 8)
// If your browser is any version of IE, the returned value will be true.
var isAnyVersionOfIE = fuckIE()
```