mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
update the constant names
This commit is contained in:
parent
8e49696d02
commit
d0959a43c4
@ -594,10 +594,10 @@ const browsersList = [
|
||||
* in order to decide what regexp exactly we want to apply
|
||||
* (as there is a specific decision based on that conclusion)
|
||||
*/
|
||||
const regexpWithoutParenthesis = /^(.*)\/(.*) /;
|
||||
const regexpWithParenthesis = /^(.*)\/(.*)[ \t]\((.*)/;
|
||||
const regexpWithoutDeviceSpec = /^(.*)\/(.*) /;
|
||||
const regexpWithDeviceSpec = /^(.*)\/(.*)[ \t]\((.*)/;
|
||||
const hasDeviceSpec = ua.search('\\(') !== -1;
|
||||
const regexp = hasDeviceSpec ? regexpWithoutParenthesis : regexpWithParenthesis;
|
||||
const regexp = hasDeviceSpec ? regexpWithoutDeviceSpec : regexpWithDeviceSpec;
|
||||
return {
|
||||
name: Utils.getFirstMatch(regexp, ua),
|
||||
version: Utils.getSecondMatch(regexp, ua),
|
||||
|
Loading…
Reference in New Issue
Block a user