@restnfeel/agentc-starter-kit
Version:
한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템
48 lines (35 loc) • 1.51 kB
JavaScript
import { __module as XMLComment$1 } from '../../../_virtual/XMLComment2.js';
import { __require as requireXMLNode } from './XMLNode.js';
var XMLComment = XMLComment$1.exports;
var hasRequiredXMLComment;
function requireXMLComment () {
if (hasRequiredXMLComment) return XMLComment$1.exports;
hasRequiredXMLComment = 1;
// Generated by CoffeeScript 1.12.7
(function() {
var XMLNode,
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;
XMLNode = /*@__PURE__*/ requireXMLNode();
XMLComment$1.exports = (function(superClass) {
extend(XMLComment, superClass);
function XMLComment(parent, text) {
XMLComment.__super__.constructor.call(this, parent);
if (text == null) {
throw new Error("Missing comment text. " + this.debugInfo());
}
this.text = this.stringify.comment(text);
}
XMLComment.prototype.clone = function() {
return Object.create(this);
};
XMLComment.prototype.toString = function(options) {
return this.options.writer.set(options).comment(this);
};
return XMLComment;
})(XMLNode);
}).call(XMLComment);
return XMLComment$1.exports;
}
export { requireXMLComment as __require };
//# sourceMappingURL=XMLComment.js.map