mirror of
https://github.com/GenShibe/website.git
synced 2025-02-12 13:44:49 +00:00
8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
const fs = require("fs");
|
|
|
|
let file = fs.readFileSync("index.html", "utf-8");
|
|
file = file.replace(
|
|
'<span class="last-updated"></span>',
|
|
new Date().toUTCString(),
|
|
);
|
|
fs.writeFileSync("index.html", file);
|