UNPKG
@nebulaglitch/gcode
Version:
latest (0.0.2)
0.0.2
0.0.1
A library to generate gcode output
github.com/CrimsonBastille/gcode
CrimsonBastille/gcode
@nebulaglitch/gcode
/
dist
/
commands
/
literal.js
15 lines
(12 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
Command
from
'../command.js'
;
class
Literal
extends
Command
{
toString
(
) {
return
this
.
args
.
join
(
' '
); }
constructor
(
content
){
super
(
''
);
this
.
args
.
push
(content); } }
export
{
Literal
as
default
};
//# sourceMappingURL=literal.js.map