doesitarm/helpers/macho/macho.uuid.js
2021-01-30 16:50:33 -06:00

8 lines
No EOL
299 B
JavaScript

var UUIDCommand = function UUIDCommand(cmd, cmdsize, uuid) {
this.cmd = cmd || 0x00000000;
this.cmdsize = cmdsize || 0x00000000;
this.uuid = uuid || new Uint8Array(16); //needs better input validation
this.toString = function() {
return JSON.stringify(this);
};
};