@nebulaglitch/shopbot
Version:
A library to generate shopbot output
19 lines (14 loc) • 441 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class Comment extends command.default {
toString() {
return '\n' + this.code + ' ' + this.args.join(',');
}
constructor(name){
super('\'');
this.args.push(name);
}
}
exports.default = Comment;
//# sourceMappingURL=comment.cjs.map