From e7b4284c7233bea8793f49837d7105e6365fdc29 Mon Sep 17 00:00:00 2001 From: Que Phuong Doan Pham Date: Tue, 11 Feb 2025 02:21:59 -0500 Subject: [PATCH] Update index.js --- index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index d9dc87c..689a7da 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,4 @@ -// Helper functions for conversion +//functions function milesToKM(miles) { return miles * 1.60934; } @@ -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; @@ -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); @@ -49,4 +49,4 @@ function milesToKM(miles) { // Send the result back as a string (no extra words) res.status(200).send(result.toString()); }; - \ No newline at end of file +