UNPKG

@scalenc/nc-format

Version:

Library for handling TRUMPF NC file format.

17 lines 357 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.String = void 0; /// String. class String { value; constructor( /// The value of the string. value) { this.value = value; } visit(visitor) { visitor.onString(this); } } exports.String = String; //# sourceMappingURL=String.js.map