mobile-detector
Version:
Detect if the user is browsing from mobile or tablet.
29 lines (21 loc) • 437 B
Markdown
# Mobile detector
Detect if the user is browsing from mobile or tablet.
## Install:
````
npm i mobile-detector@1.0.2 --save
````
## Usage:
### ES5
````
var detector = require('mobile-detector');
detector.isMobile(); // true
detector.isMobileOrTablet(); // true
````
### ES6
````
import { isMobile, isMobileOrTablet } from 'mobile-detector';
isMobile(); // true
isMobileOrTablet(); // true
````
### License
# MIT