Skip to content

Commit 1013a18

Browse files
committed
Fix version RegExp
1 parent b879a1a commit 1013a18

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

index.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ var QUERIES = [
799799
select: sinceQuery
800800
},
801801
{
802-
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%$/,
802+
regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%$/,
803803
select: function (context, sign, popularity) {
804804
popularity = parseFloat(popularity)
805805
var usage = browserslist.usage.global
@@ -824,7 +824,7 @@ var QUERIES = [
824824
}
825825
},
826826
{
827-
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%\s+in\s+my\s+stats$/,
827+
regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+my\s+stats$/,
828828
select: function (context, sign, popularity) {
829829
popularity = parseFloat(popularity)
830830
if (!context.customUsage) {
@@ -852,12 +852,12 @@ var QUERIES = [
852852
}
853853
},
854854
{
855-
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%\s+in\s+(\S+)\s+stats$/,
855+
regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+(\S+)\s+stats$/,
856856
select: function (context, sign, popularity, name) {
857857
popularity = parseFloat(popularity)
858858
var stats = env.loadStat(context, name, browserslist.data)
859859
if (stats) {
860-
context.customUsage = { }
860+
context.customUsage = {}
861861
for (var browser in stats) {
862862
fillUsage(context.customUsage, browser, stats[browser])
863863
}
@@ -887,7 +887,7 @@ var QUERIES = [
887887
}
888888
},
889889
{
890-
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%\s+in\s+((alt-)?\w\w)$/,
890+
regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+((alt-)?\w\w)$/,
891891
select: function (context, sign, popularity, place) {
892892
popularity = parseFloat(popularity)
893893
if (place.length === 2) {
@@ -918,11 +918,11 @@ var QUERIES = [
918918
}
919919
},
920920
{
921-
regexp: /^cover\s+(d+|\d*\.\d+)%$/,
921+
regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%$/,
922922
select: coverQuery
923923
},
924924
{
925-
regexp: /^cover\s+(d+|\d*\.\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/,
925+
regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/,
926926
select: coverQuery
927927
},
928928
{

0 commit comments

Comments
 (0)