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