UNPKG
@scalenc/nc-format
Version:
latest (1.2.0)
1.2.0
1.1.1
1.1.0
1.0.11
1.0.10
1.0.9
Library for handling TRUMPF NC file format.
github.com/scalenc/nc-format
scalenc/nc-format
@scalenc/nc-format
/
dist
/
persistency
/
TextWriter.js
12 lines
•
285 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
TextWriter
=
void
0
;
class
TextWriter
{ text =
''
;
write
(
text
) {
this
.
text
+= text;
return
this
; } }
exports
.
TextWriter
=
TextWriter
;
//# sourceMappingURL=TextWriter.js.map