Explorar o código

Added tz offset

Spencer Gardner %!s(int64=2) %!d(string=hai) anos
pai
achega
0021ffd5e0
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      src/app.ts

+ 5 - 1
src/app.ts

@@ -3,7 +3,11 @@ import express from "express";
 const app = express();
 
 app.get("/", (req, res) => {
-  res.send(`time:${Math.round(new Date().getTime() / 1000)}`);
+  const lines = [
+    `time:${Math.round(new Date().getTime() / 1000)}`,
+     `tz:-6`
+  ]
+  res.send(lines.join('\n'));
 });
 
 app.listen(3000, "0.0.0.0", () => {});