odin-default-js-exercises/tempConversion/tempConversion.js

13 lines
96 B
JavaScript

let ftoc = function() {
}
let ctof = function() {
}
module.exports = {
ftoc,
ctof
}