@restnfeel/agentc-starter-kit
Version:
한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템
80 lines (65 loc) • 2.46 kB
JavaScript
import { __module as XMLDOMConfiguration$1 } from '../../../_virtual/XMLDOMConfiguration.js';
import { __require as requireXMLDOMErrorHandler } from './XMLDOMErrorHandler.js';
import { __require as requireXMLDOMStringList } from './XMLDOMStringList.js';
var XMLDOMConfiguration = XMLDOMConfiguration$1.exports;
var hasRequiredXMLDOMConfiguration;
function requireXMLDOMConfiguration () {
if (hasRequiredXMLDOMConfiguration) return XMLDOMConfiguration$1.exports;
hasRequiredXMLDOMConfiguration = 1;
// Generated by CoffeeScript 1.12.7
(function() {
var XMLDOMErrorHandler, XMLDOMStringList;
XMLDOMErrorHandler = /*@__PURE__*/ requireXMLDOMErrorHandler();
XMLDOMStringList = /*@__PURE__*/ requireXMLDOMStringList();
XMLDOMConfiguration$1.exports = (function() {
function XMLDOMConfiguration() {
this.defaultParams = {
"canonical-form": false,
"cdata-sections": false,
"comments": false,
"datatype-normalization": false,
"element-content-whitespace": true,
"entities": true,
"error-handler": new XMLDOMErrorHandler(),
"infoset": true,
"validate-if-schema": false,
"namespaces": true,
"namespace-declarations": true,
"normalize-characters": false,
"schema-location": '',
"schema-type": '',
"split-cdata-sections": true,
"validate": false,
"well-formed": true
};
this.params = Object.create(this.defaultParams);
}
Object.defineProperty(XMLDOMConfiguration.prototype, 'parameterNames', {
get: function() {
return new XMLDOMStringList(Object.keys(this.defaultParams));
}
});
XMLDOMConfiguration.prototype.getParameter = function(name) {
if (this.params.hasOwnProperty(name)) {
return this.params[name];
} else {
return null;
}
};
XMLDOMConfiguration.prototype.canSetParameter = function(name, value) {
return true;
};
XMLDOMConfiguration.prototype.setParameter = function(name, value) {
if (value != null) {
return this.params[name] = value;
} else {
return delete this.params[name];
}
};
return XMLDOMConfiguration;
})();
}).call(XMLDOMConfiguration);
return XMLDOMConfiguration$1.exports;
}
export { requireXMLDOMConfiguration as __require };
//# sourceMappingURL=XMLDOMConfiguration.js.map