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

13 lines
99 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
2021-05-11 02:29:44 +00:00
};