2021-05-09 12:06:18 +00:00
|
|
|
const ftoc = function(f) {
|
2021-04-30 10:12:52 +00:00
|
|
|
return Math.round((f - 32) * (5/9) * 10) / 10
|
2017-08-25 15:27:07 +00:00
|
|
|
}
|
|
|
|
|
2021-05-09 12:06:18 +00:00
|
|
|
const ctof = function(c) {
|
2021-04-30 10:12:52 +00:00
|
|
|
return Math.round(((c * 9/5) + 32) * 10) / 10
|
2017-08-25 15:27:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
ftoc,
|
|
|
|
ctof
|
|
|
|
}
|