Update extractor and builder to parse browser support properly

This commit is contained in:
Angelos Chalaris
2019-08-24 10:48:22 +03:00
parent 0bb3c03186
commit f2f0ea73ec
4 changed files with 20 additions and 21 deletions

View File

@ -146,7 +146,7 @@ const getBrowserSupport = str => {
)
return {
text: browserSupportText,
supportPercentage: Math.min(...supportPercentage)
supportPercentage: Math.min(...supportPercentage,100)
}
};