mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
8 lines
No EOL
254 B
JavaScript
8 lines
No EOL
254 B
JavaScript
var RpathCommand = function RpathCommand(cmd, cmdsize, path) {
|
|
this.cmd = cmd || 0x00000000;
|
|
this.cmdsize = cmdsize || 0x00000000;
|
|
this.path = path || 0x00000000;
|
|
this.toString = function() {
|
|
JSON.stringify(this);
|
|
};
|
|
}; |