sl-banbot/index.js

11 lines
199 B
JavaScript

const fs = require("fs");
// Functions
const slTimestamp = (timestamp) => {
change = 62167219200;
ourTs = Number(BigInt(timestamp.slice(0,-1))/1000000n);
return new Date((ourTs-change)*1000)
}