Remove missing space at the end

pull/310/head
Ricardo Rauber Pereira 5 years ago
parent 3bfb24c8cb
commit cfe2b493bb

@ -590,7 +590,7 @@ const browsersList = [
{
test: [/.*/i],
describe(ua) {
const regexp = ua.search("\\(") == -1 ? /^(.*)\/(.*) / : /^(.*)\/(.*)\((.*) /
const regexp = ua.search('\\(') === -1 ? /^(.*)\/(.*) / : /^(.*)\/(.*)[ \t]\((.*)/;
return {
name: Utils.getFirstMatch(regexp, ua),
version: Utils.getSecondMatch(regexp, ua),

Loading…
Cancel
Save