18 lines
265 B
JavaScript
18 lines
265 B
JavaScript
(function() {
|
|
var Command;
|
|
|
|
Command = (function() {
|
|
function Command(command, callback) {
|
|
this.command = command;
|
|
this.callback = callback;
|
|
this.next = null;
|
|
}
|
|
|
|
return Command;
|
|
|
|
})();
|
|
|
|
module.exports = Command;
|
|
|
|
}).call(this);
|