mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
8 lines
No EOL
299 B
JavaScript
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);
|
|
};
|
|
}; |