Update dependencies (#440)

* chore: update version of the fast-xml-parser

* chore: update tough-cookie and @azure/ms-rest-js

* chore: update license for the @azure/ms-rest-js
This commit is contained in:
Ivan
2023-07-10 17:20:56 +02:00
committed by GitHub
parent a6be55a915
commit e1749123a8
4 changed files with 35 additions and 71 deletions

18
dist/setup/index.js vendored
View File

@ -51211,7 +51211,9 @@ module.exports = toXml;
/***/ }),
/***/ 6072:
/***/ ((module) => {
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
const util = __nccwpck_require__(8280);
//TODO: handle comments
function readDocType(xmlData, i){
@ -51355,20 +51357,16 @@ function isNotation(xmlData, i){
return false
}
//an entity name should not contains special characters that may be used in regex
//Eg !?\\\/[]$%{}^&*()<>
const specialChar = "!?\\\/[]$%{}^&*()<>|+";
function validateEntityName(name){
for (let i = 0; i < specialChar.length; i++) {
const ch = specialChar[i];
if(name.indexOf(ch) !== -1) throw new Error(`Invalid character ${ch} in entity name`);
}
return name;
if (util.isName(name))
return name;
else
throw new Error(`Invalid entity name ${name}`);
}
module.exports = readDocType;
/***/ }),
/***/ 6993: