mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-04 22:39:50 +00:00
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:
18
dist/setup/index.js
vendored
18
dist/setup/index.js
vendored
@ -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:
|
||||
|
Reference in New Issue
Block a user