From 1fa2f675c54d435255a35cf795055b7713fa4347 Mon Sep 17 00:00:00 2001 From: arielkru <63583491+arielkru@users.noreply.github.com> Date: Mon, 25 Mar 2024 16:58:59 +0200 Subject: [PATCH] Update express.js --- javascript/express.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/express.js b/javascript/express.js index 90194d0..64f1280 100644 --- a/javascript/express.js +++ b/javascript/express.js @@ -42,7 +42,7 @@ const app = express(); app.get('/user', (req, res) => { const userId = req.query.id; - baz(userId,0) + baz(userId,0) // check this as the source, the sink is in another file res.send(`User ID: ${userId}`); });