mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Add Parser#getBrowserName and Parser#getBrowserVersion
This commit is contained in:
parent
b5aa54553f
commit
c50d0449d3
@ -26,6 +26,15 @@ class Parser {
|
||||
return this._ua;
|
||||
}
|
||||
|
||||
/**
|
||||
* Test a UA string for a regexp
|
||||
* @param {RegExp} regex
|
||||
* @return {Boolean}
|
||||
*/
|
||||
test(regex) {
|
||||
return regex.test(this._ua);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get parsed browser object
|
||||
* @return {Object}
|
||||
@ -71,18 +80,22 @@ class Parser {
|
||||
}
|
||||
|
||||
/**
|
||||
* Test a UA string for a regexp
|
||||
* @param {RegExp} regex
|
||||
* @return {Boolean}
|
||||
* Get browser's name
|
||||
* @return {String} Browser's name
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
test(regex) {
|
||||
return regex.test(this._ua);
|
||||
getBrowserName() {
|
||||
return this.getBrowser().name;
|
||||
}
|
||||
|
||||
parseBrowserName() {}
|
||||
parseBrowserVersion() {}
|
||||
parsePlatform(){}
|
||||
parseOS(){}
|
||||
|
||||
getBrowserVersion() {
|
||||
return this.getBrowser().version;
|
||||
}
|
||||
|
||||
getPlatform(){}
|
||||
getOS(){}
|
||||
parseOSName(){}
|
||||
parseOSVersion(){}
|
||||
parseFullInfo(){}
|
||||
|
@ -23,4 +23,13 @@ test('_parseBrowser', t => {
|
||||
t.truthy(spy.called);
|
||||
t.is(b.name, 'Opera');
|
||||
t.is(b.version, '43.0.2442.1165');
|
||||
parser._parseBrowser.restore();
|
||||
});
|
||||
|
||||
test('getBrowserName', t => {
|
||||
t.is(parser.getBrowserName(), 'Opera');
|
||||
});
|
||||
|
||||
test('getBrowserVersion', t => {
|
||||
t.is(parser.getBrowserVersion(), '43.0.2442.1165');
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user