11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
const convertToCelsius = function() {
|
|
};
|
|
|
|
const convertToFahrenheit = function() {
|
|
};
|
|
|
|
// Do not edit below this line
|
|
module.exports = {
|
|
convertToCelsius,
|
|
convertToFahrenheit
|
|
};
|