merged dev and added some challenge 1 functionality

This commit is contained in:
Joaquin committed 2025-05-07 13:06:22 -07:00
1 parent 8507c4faaf
commit 2ad43139de
27 files changed
+656 -135

No files matched your search

+1 -1
View File
@@ -12,7 +12,7 @@ async function getRates(country) {
const data = await res.json();
let rates = data.rates;
return rates;
return { exRates: rates, abbreviation: abbr };
}
module.exports = getRates;