mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
8 lines
No EOL
278 B
JavaScript
8 lines
No EOL
278 B
JavaScript
var PrebindCksumCommand = function PrebindCksumCommand(cmd, cmdsize, cksum) {
|
|
this.cmd = cmd || 0x00000000;
|
|
this.cmdsize = cmdsize || 0x00000000;
|
|
this.cksum = cksum || 0x00000000;
|
|
this.toString = function() {
|
|
return JSON.stringify(this);
|
|
};
|
|
}; |