Update FromHFSPlusTimeStamp.mjs

This commit is contained in:
Michael H 2024-06-12 12:49:59 +01:00 committed by GitHub
parent da91d53f06
commit d056f54b27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,6 @@ class FromHFSPlusTimestamp extends Operation {
*/
constructor() {
super();
this.name = "From HFS(+) Timestamp";
this.module = "Default";
this.description = "Converts Apple HFS/HFS+ Filesystem Timestamp to datetime string<br><br>e.g. <code>CDF566EE</code> becomes <code>30 June 2013 04:39:10 UTC</code><br><br>Mac HFS/HFS+ timestamp is a 4 Byte Hex String representing the number of seconds since January 1, 1904 UTC<br><br> Use with swap endianness recipe if required.";
@ -38,5 +37,4 @@ class FromHFSPlusTimestamp extends Operation {
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss") + " UTC";
}
}
export default FromHFSPlusTimestamp;