Update tempConversion function's naming

This commit is contained in:
Asartea
2022-11-12 20:49:28 +01:00
parent a05d4d60c8
commit 374252c302
2 changed files with 18 additions and 20 deletions
+4 -6
View File
@@ -1,13 +1,11 @@
const ftoc = function() {
const convertToCelsius = function() {
};
const ctof = function() {
const convertToFahrenheit = function() {
};
// Do not edit below this line
module.exports = {
ftoc,
ctof
convertToCelsius,
convertToFahrenheit
};