(cmd, cmdsize, uuid)
| 1 | var UUIDCommand = function UUIDCommand(cmd, cmdsize, uuid) { |
| 2 | this.cmd = cmd || 0x00000000; |
| 3 | this.cmdsize = cmdsize || 0x00000000; |
| 4 | this.uuid = uuid || new Uint8Array(16); //needs better input validation |
| 5 | this.toString = function() { |
| 6 | return JSON.stringify(this); |
| 7 | }; |
| 8 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected