@nebulaglitch/gcode
Version:
A library to generate gcode output
19 lines (14 loc) • 420 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class Literal extends command.default {
toString() {
return this.args.join(' ');
}
constructor(content){
super('');
this.args.push(content);
}
}
exports.default = Literal;
//# sourceMappingURL=literal.cjs.map