Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
qdpham authored Feb 11, 2025
1 parent 9b2abcd commit e7b4284
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Helper functions for conversion
//functions
function milesToKM(miles) {
return miles * 1.60934;
}
Expand All @@ -15,7 +15,7 @@ function milesToKM(miles) {
return meters * 3.28084;
}

// Cloud Function to handle the conversion
// Cloud Function
exports.convertDistance = (req, res) => {
// Get the unit and value from the query parameters
const unit = req.query.unit;
Expand All @@ -28,7 +28,7 @@ function milesToKM(miles) {

let result;

// Decide which conversion function to call based on the unit

switch (unit) {
case 'miles_to_km':
result = milesToKM(value);
Expand All @@ -49,4 +49,4 @@ function milesToKM(miles) {
// Send the result back as a string (no extra words)
res.status(200).send(result.toString());
};


0 comments on commit e7b4284

Please sign in to comment.