mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Change Bowser's constructor
This commit is contained in:
parent
2c8f17b037
commit
38320b1409
@ -27,55 +27,11 @@ class Bowser {
|
|||||||
if (!UA) {
|
if (!UA) {
|
||||||
throw new Error('UserAgent is not defined');
|
throw new Error('UserAgent is not defined');
|
||||||
}
|
}
|
||||||
this._ua = UA;
|
return new Parser(UA);
|
||||||
this._parser = new Parser(UA);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static parse(UA) {
|
||||||
* Get browser's version
|
return new this.constructor(UA).getResult();
|
||||||
* @returns {String}
|
|
||||||
*/
|
|
||||||
getBrowserVersion() {
|
|
||||||
return this._parser.getBrowserVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a browser's name
|
|
||||||
* @returns {String}
|
|
||||||
*/
|
|
||||||
getBrowserName() {
|
|
||||||
return this._parser.getBrowserName();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an object with a name and version of the browser
|
|
||||||
* @returns {Object}
|
|
||||||
*/
|
|
||||||
getBrowser() {
|
|
||||||
return this._parser.getBrowser();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an object with a name and version of the OS if it's defined
|
|
||||||
* @returns {Object}
|
|
||||||
*/
|
|
||||||
getOS() {
|
|
||||||
return this._parser.getOS();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get name of OS
|
|
||||||
* @returns {String}
|
|
||||||
*/
|
|
||||||
getOSName() {
|
|
||||||
return this._parser.getOSName();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get OS version
|
|
||||||
*/
|
|
||||||
getOSVersion() {
|
|
||||||
return this._parser.getOSVersion();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user