Update ToUNIX32bitTimeStamp.mjs

This commit is contained in:
Michael H 2024-06-12 09:24:11 +01:00 committed by GitHub
parent a1ddeaffa3
commit 4565d85e33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,7 +42,7 @@ class ToUNIX32bitTimestamp extends Operation {
*/
run(input, args) {
const [showDateTime] = args,
d = moment.utc(input);
d = moment.utc(input);
let result = d.unix();
const hexString = result.toString(16);
return showDateTime ? `${hexString.toUpperCase()} (${d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss")} UTC)` : hexString.toUpperCase();