string.js 757 B

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = void 0;
  4. var _node = _interopRequireDefault(require("./node"));
  5. var _types = require("./types");
  6. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  7. function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
  8. var String =
  9. /*#__PURE__*/
  10. function (_Node) {
  11. _inheritsLoose(String, _Node);
  12. function String(opts) {
  13. var _this;
  14. _this = _Node.call(this, opts) || this;
  15. _this.type = _types.STRING;
  16. return _this;
  17. }
  18. return String;
  19. }(_node.default);
  20. exports.default = String;
  21. module.exports = exports.default;