odin-javascript-exercises/07_tempConversion/tempConversion.js
2021-09-11 16:18:55 -06:00

13 lines
130 B
JavaScript

const ftoc = function() {
};
const ctof = function() {
};
// Do not edit below this line
module.exports = {
ftoc,
ctof
};