Skip to content

Commit b38c828

Browse files
authored
Update Convert Celsius to Fahrenheit.js
oops all commas
1 parent 9ab3e90 commit b38c828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parsers/Convert Celsius to Fahrenheit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ flags:gmi
77
const regexTest = /(-?\d{1,3}(?:\.\d{1,2})?)°?\s?(?:degrees?)?\s?c(?:elsius)?\b/gi;
88
const celsiusToFahrenheit = c => ((c * 9 / 5) + 32).toFixed(2);
99
const formatNumber = num => Number(num).toFixed(2).replace(/\.00$/, '');
10-
const conversions = [];,
10+
const conversions = [];
1111

1212
let match;
1313
while ((match = regexTest.exec(current.text)) !== null) {

0 commit comments

Comments
 (0)