UNPKG

@nebulaglitch/gcode

Version:
15 lines (12 loc) 363 B
import Command from '../command.js'; import Argument from '../argument.js'; class SubprogramCall extends Command { constructor(filename = null){ super('M', 98); if (filename !== null) { this.args.push(new Argument('', filename)); } } } export { SubprogramCall as default }; //# sourceMappingURL=subprogramcall.js.map