diff --git a/src/core/operations/ToWindows64bitTimeStamp.mjs b/src/core/operations/ToWindows64bitTimeStamp.mjs index 5e1bdbfd..43614129 100644 --- a/src/core/operations/ToWindows64bitTimeStamp.mjs +++ b/src/core/operations/ToWindows64bitTimeStamp.mjs @@ -5,7 +5,6 @@ */ import Operation from "../Operation.mjs"; -import OperationError from "../errors/OperationError.mjs"; import moment from "moment-timezone"; /** @@ -26,7 +25,7 @@ class ToWindows64bitTimestamp extends Operation { this.inputType = "string"; this.outputType = "string"; this.args = [ - { + { "name": "Show parsed datetime", "type": "boolean", "value": true @@ -42,7 +41,7 @@ class ToWindows64bitTimestamp extends Operation { */ run(input, args) { const [showDateTime] = args, - d = moment.utc(input); + d = moment.utc(input); let result = d.unix(); const step1 = result + 11644473600; const hexString = (step1 * 10000000).toString(16);