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

14 lines
130 B
JavaScript
Raw Normal View History

const ftoc = function() {
};
2017-08-25 15:27:07 +00:00
const ctof = function() {
};
2017-08-25 15:27:07 +00:00
// Do not edit below this line
2017-08-25 15:27:07 +00:00
module.exports = {
ftoc,
ctof
};