Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Cindy Pham committed Feb 11, 2025
0 parents commit 9b2abcd
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
52 changes: 52 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// Helper functions for conversion
function milesToKM(miles) {
return miles * 1.60934;
}

function kmToMiles(km) {
return km * 0.621371;
}

function feetToMeters(feet) {
return feet * 0.3048;
}

function metersToFeet(meters) {
return meters * 3.28084;
}

// Cloud Function to handle the conversion
exports.convertDistance = (req, res) => {
// Get the unit and value from the query parameters
const unit = req.query.unit;
const value = parseFloat(req.query.value);

// Check if the value is a valid number
if (isNaN(value)) {
return res.status(400).send('Invalid value');
}

let result;

// Decide which conversion function to call based on the unit
switch (unit) {
case 'miles_to_km':
result = milesToKM(value);
break;
case 'km_to_miles':
result = kmToMiles(value);
break;
case 'feet_to_meters':
result = feetToMeters(value);
break;
case 'meters_to_feet':
result = metersToFeet(value);
break;
default:
return res.status(400).send('Invalid unit');
}

// Send the result back as a string (no extra words)
res.status(200).send(result.toString());
};

13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "distance-converter",
"version": "1.0.0",
"description": "A Google Cloud Function to convert distances.",
"main": "index.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"start": "node index.js"
},
"author": "Your Name",
"license": "ISC"
}

0 comments on commit 9b2abcd

Please sign in to comment.