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

14 lines
130 B
JavaScript
Raw Normal View History

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