Browse Source

Return seconds not milliseconds

Spencer Gardner 2 năm trước cách đây
mục cha
commit
8b26f16af4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/app.ts

+ 1 - 1
src/app.ts

@@ -3,7 +3,7 @@ import express from "express";
 const app = express();
 
 app.get("/", (req, res) => {
-  res.send(`time:${new Date().getTime()}`);
+  res.send(`time:${Math.round(new Date().getTime() / 1000)}`);
 });
 
 app.listen(3000, "0.0.0.0", () => {});