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

13 lines
98 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
module.exports = {
ftoc,
ctof
}