greybel-interpreter 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -120,7 +120,7 @@ var CustomString = /** @class */ (function (_super) {
|
|
|
120
120
|
return me.value.length === 0 ? null : me.value;
|
|
121
121
|
};
|
|
122
122
|
CustomString.prototype.toString = function () {
|
|
123
|
-
return
|
|
123
|
+
return this.value;
|
|
124
124
|
};
|
|
125
125
|
CustomString.prototype.fork = function () {
|
|
126
126
|
return new CustomString(this.value);
|