Skip to content

Commit 291588d

Browse files
committed
Rerun build
1 parent 87189a1 commit 291588d

File tree

1 file changed

+32
-33
lines changed

1 file changed

+32
-33
lines changed

dist/index.js

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -5048,7 +5048,7 @@ module.exports = {"name":"@octokit/rest","version":"16.28.9","publishConfig":{"a
50485048
module.exports = XMLDummy = class XMLDummy extends XMLNode {
50495049
// Initializes a new instance of `XMLDummy`
50505050

5051-
// `XMLDummy` is a special node representing a node with
5051+
// `XMLDummy` is a special node representing a node with
50525052
// a null value. Dummy nodes are created while recursively
50535053
// building the XML tree. Simply skipping null values doesn't
50545054
// work because that would break the recursive chain.
@@ -9151,7 +9151,7 @@ function escapeProperty(s) {
91519151

91529152
};
91539153

9154-
9154+
91559155
// DOM level 1
91569156
Object.defineProperty(XMLNamedNodeMap.prototype, 'length', {
91579157
get: function() {
@@ -10956,7 +10956,7 @@ exports.FetchError = FetchError;
1095610956
document(doc, options) {
1095710957
var child, i, j, k, len1, len2, ref, ref1, results;
1095810958
ref = doc.children;
10959-
// set a flag so that we don't insert a newline after the last root level node
10959+
// set a flag so that we don't insert a newline after the last root level node
1096010960
for (i = j = 0, len1 = ref.length; j < len1; i = ++j) {
1096110961
child = ref[i];
1096210962
child.isLastRootNode = i === doc.children.length - 1;
@@ -12067,14 +12067,14 @@ function authenticationBeforeRequest (state, options) {
1206712067
} else {
1206812068
this.writerOptions.state = WriterState.OpenTag;
1206912069
chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<!DOCTYPE ' + node.rootNodeName;
12070-
12070+
1207112071
// external identifier
1207212072
if (node.pubID && node.sysID) {
1207312073
chunk += ' PUBLIC "' + node.pubID + '" "' + node.sysID + '"';
1207412074
} else if (node.sysID) {
1207512075
chunk += ' SYSTEM "' + node.sysID + '"';
1207612076
}
12077-
12077+
1207812078
// internal subset
1207912079
if (node.children) {
1208012080
chunk += ' [';
@@ -12479,9 +12479,9 @@ function addHook (state, kind, name, hook) {
1247912479

1248012480
// `feature` package name of the feature to test. In Level 1, the
1248112481
// legal values are "HTML" and "XML" (case-insensitive).
12482-
// `version` version number of the package name to test.
12483-
// In Level 1, this is the string "1.0". If the version is
12484-
// not specified, supporting any version of the feature will
12482+
// `version` version number of the package name to test.
12483+
// In Level 1, this is the string "1.0". If the version is
12484+
// not specified, supporting any version of the feature will
1248512485
// cause the method to return true.
1248612486
hasFeature(feature, version) {
1248712487
return true;
@@ -12512,7 +12512,7 @@ function addHook (state, kind, name, hook) {
1251212512
throw new Error("This DOM method is not implemented.");
1251312513
}
1251412514

12515-
// Returns a specialized object which implements the specialized APIs
12515+
// Returns a specialized object which implements the specialized APIs
1251612516
// of the specified feature and version.
1251712517

1251812518
// `feature` name of the feature requested.
@@ -14549,7 +14549,7 @@ module.exports = require("net");
1454914549
this.value = '';
1455014550
}
1455114551

14552-
14552+
1455314553
// Creates and returns a deep clone of `this`
1455414554
clone() {
1455514555
return Object.create(this);
@@ -15519,7 +15519,7 @@ exports.convertToJson = convertToJson;
1551915519
}
1552015520
}
1552115521

15522-
15522+
1552315523
// Sets the parent node of this node and its children recursively
1552415524

1552515525
// `parent` the parent node
@@ -15591,7 +15591,7 @@ exports.convertToJson = convertToJson;
1559115591
// skip null and undefined nodes
1559215592
} else if (!this.options.keepNullNodes && (val == null)) {
1559315593
lastChild = this.dummy();
15594-
15594+
1559515595
// expand list by creating child nodes
1559615596
} else if (!this.options.separateArrayItems && Array.isArray(val)) {
1559715597
for (k = 0, len1 = val.length; k < len1; k++) {
@@ -15600,7 +15600,7 @@ exports.convertToJson = convertToJson;
1560015600
childNode[key] = item;
1560115601
lastChild = this.element(childNode);
1560215602
}
15603-
15603+
1560415604
// expand child nodes under parent
1560515605
} else if (isObject(val)) {
1560615606
// if the key is #text expand child nodes under this node to support mixed content
@@ -15611,7 +15611,7 @@ exports.convertToJson = convertToJson;
1561115611
lastChild.element(val);
1561215612
}
1561315613
} else {
15614-
15614+
1561515615
// text node
1561615616
lastChild = this.element(key, val);
1561715617
}
@@ -15663,10 +15663,10 @@ exports.convertToJson = convertToJson;
1566315663
// temporarily remove children starting *with* refChild
1566415664
i = children.indexOf(refChild);
1566515665
removed = children.splice(i);
15666-
15666+
1566715667
// add the new child
1566815668
children.push(newChild);
15669-
15669+
1567015670
// add back removed children after new child
1567115671
Array.prototype.push.apply(children, removed);
1567215672
} else {
@@ -15677,14 +15677,14 @@ exports.convertToJson = convertToJson;
1567715677
if (this.isRoot) {
1567815678
throw new Error("Cannot insert elements at root level. " + this.debugInfo(name));
1567915679
}
15680-
15680+
1568115681
// temporarily remove children starting *with* this
1568215682
i = this.parent.children.indexOf(this);
1568315683
removed = this.parent.children.splice(i);
15684-
15684+
1568515685
// add the new child
1568615686
child = this.parent.element(name, attributes, text);
15687-
15687+
1568815688
// add back removed children after new child
1568915689
Array.prototype.push.apply(this.parent.children, removed);
1569015690
return child;
@@ -15701,14 +15701,14 @@ exports.convertToJson = convertToJson;
1570115701
if (this.isRoot) {
1570215702
throw new Error("Cannot insert elements at root level. " + this.debugInfo(name));
1570315703
}
15704-
15704+
1570515705
// temporarily remove children starting *after* this
1570615706
i = this.parent.children.indexOf(this);
1570715707
removed = this.parent.children.splice(i + 1);
15708-
15708+
1570915709
// add the new child
1571015710
child = this.parent.element(name, attributes, text);
15711-
15711+
1571215712
// add back removed children after new child
1571315713
Array.prototype.push.apply(this.parent.children, removed);
1571415714
return child;
@@ -16043,7 +16043,7 @@ exports.convertToJson = convertToJson;
1604316043
return this;
1604416044
}
1604516045

16046-
16046+
1604716047
// Returns debug string for this node
1604816048
debugInfo(name) {
1604916049
var ref1, ref2;
@@ -16264,7 +16264,7 @@ exports.convertToJson = convertToJson;
1626416264
return other === this || this.isDescendant(other);
1626516265
}
1626616266

16267-
// An object A is called a descendant of an object B, if either A is
16267+
// An object A is called a descendant of an object B, if either A is
1626816268
// a child of B or A is a child of an object C that is a descendant of B.
1626916269
isDescendant(node) {
1627016270
var child, isDescendantChild, j, len, ref1;
@@ -16288,7 +16288,7 @@ exports.convertToJson = convertToJson;
1628816288
return node.isDescendant(this);
1628916289
}
1629016290

16291-
// An object A is preceding an object B if A and B are in the
16291+
// An object A is preceding an object B if A and B are in the
1629216292
// same tree and A comes before B in tree order.
1629316293
isPreceding(node) {
1629416294
var nodePos, thisPos;
@@ -16301,7 +16301,7 @@ exports.convertToJson = convertToJson;
1630116301
}
1630216302
}
1630316303

16304-
// An object A is folllowing an object B if A and B are in the
16304+
// An object A is folllowing an object B if A and B are in the
1630516305
// same tree and A comes after B in tree order.
1630616306
isFollowing(node) {
1630716307
var nodePos, thisPos;
@@ -16333,7 +16333,7 @@ exports.convertToJson = convertToJson;
1633316333
}
1633416334
}
1633516335

16336-
16336+
1633716337
// Depth-first preorder traversal through the XML tree
1633816338
foreachTreeNode(node, func) {
1633916339
var child, j, len, ref1, res;
@@ -16882,7 +16882,6 @@ class DotNetVersionInfo {
1688216882
this.isExactVersionSet = true;
1688316883
return;
1688416884
}
16885-
//Note: No support for previews when using generic
1688616885
const parts = version.split('.');
1688716886
if (parts.length < 2 || parts.length > 3)
1688816887
this.throwInvalidVersionFormat();
@@ -20470,7 +20469,7 @@ module.exports = set;
2047020469
return this.options.writer.attribute(this, this.options.writer.filterOptions(options));
2047120470
}
2047220471

20473-
20472+
2047420473
// Returns debug string for this node
2047520474
debugInfo(name) {
2047620475
name = name || this.name;
@@ -22018,7 +22017,7 @@ const validator = __webpack_require__(971);
2201822017
exports.parse = function(xmlData, options, validationOption) {
2201922018
if( validationOption){
2202022019
if(validationOption === true) validationOption = {}
22021-
22020+
2202222021
const result = validator.validate(xmlData, validationOption);
2202322022
if (result !== true) {
2202422023
throw Error( result.err.msg)
@@ -22062,11 +22061,11 @@ function print(xmlNode, indentation){
2206222061
//console.log(indentation + " \""+index+"\" : [")
2206322062
print(item, indentation2);
2206422063
})
22065-
console.log(indentation + "],")
22064+
console.log(indentation + "],")
2206622065
}else{
2206722066
console.log(indentation + " \""+key+"\" : {")
2206822067
print(node, indentation2);
22069-
console.log(indentation + "},")
22068+
console.log(indentation + "},")
2207022069
}
2207122070
});
2207222071
console.log(indentation + "},")
@@ -22077,4 +22076,4 @@ function print(xmlNode, indentation){
2207722076

2207822077
/***/ })
2207922078

22080-
/******/ });
22079+
/******/ });

0 commit comments

Comments
 (0)