Files
odin-javascript-exercises/07_tempConversion/tempConversion.js
T

14 lines
130 B
JavaScript
Raw Normal View History

2018-08-07 11:23:28 +01:00
const ftoc = function() {
2021-03-03 15:13:24 +13:00
};
2017-08-25 10:27:07 -05:00
2018-08-07 11:23:28 +01:00
const ctof = function() {
2021-03-03 15:13:24 +13:00
};
2017-08-25 10:27:07 -05:00
// Do not edit below this line
2017-08-25 10:27:07 -05:00
module.exports = {
ftoc,
ctof
2021-03-03 15:13:24 +13:00
};