From 8ce7ab0fb6f4eaf6f610b366b00949a00d79cce1 Mon Sep 17 00:00:00 2001 From: jarrettgaither Date: Thu, 18 Apr 2024 14:27:14 -0700 Subject: [PATCH] Updated index.js to return a numerical timestamp --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1955195..2d77199 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,7 @@ app.get('/', (req, res) => { const data = { message: 'My name is Jarrett Gaither', - timestamp: new Date().toISOString() + timestamp: Date.now() }; res.json(data);