@nebulaglitch/gcode
Version:
A library to generate gcode output
20 lines (15 loc) • 551 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
const argument = require('../argument.cjs');
class Question extends command.default {
constructor(text = null){
super('G', 5);
this.args.push(new argument.default('T', 0));
if (text !== null) {
this.args.push(new argument.default('m', ' "' + text + '"'));
}
}
}
exports.default = Question;
//# sourceMappingURL=question.cjs.map