소스 검색

Return seconds not milliseconds

Spencer Gardner 2 년 전
부모
커밋
8b26f16af4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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", () => {});