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 "\"".concat(this.value.toString(), "\"");
123
+ return this.value;
124
124
  };
125
125
  CustomString.prototype.fork = function () {
126
126
  return new CustomString(this.value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "greybel-interpreter",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Interpreter",
5
5
  "main": "dist/index",
6
6
  "typings": "dist/index",