UNPKG

@nebulaglitch/gcode

Version:
16 lines (13 loc) 392 B
import Command from '../command.js'; import Argument from '../argument.js'; class Question extends Command { constructor(text = null){ super('G', 5); this.args.push(new Argument('T', 0)); if (text !== null) { this.args.push(new Argument('m', ' "' + text + '"')); } } } export { Question as default }; //# sourceMappingURL=question.js.map