@xyd-js/openapi-sampler 0.0.0-build-1760f84-20251129221538 → 0.0.0-build-aebf977-20251203155725
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1348,7 +1348,7 @@ var validator$2 = {};
|
|
|
1348
1348
|
|
|
1349
1349
|
var util$3 = {};
|
|
1350
1350
|
|
|
1351
|
-
(function (exports) {
|
|
1351
|
+
(function (exports$1) {
|
|
1352
1352
|
|
|
1353
1353
|
const nameStartChar = ':A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD';
|
|
1354
1354
|
const nameChar = nameStartChar + '\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040';
|
|
@@ -1376,11 +1376,11 @@ var util$3 = {};
|
|
|
1376
1376
|
return !(match === null || typeof match === 'undefined');
|
|
1377
1377
|
};
|
|
1378
1378
|
|
|
1379
|
-
exports.isExist = function(v) {
|
|
1379
|
+
exports$1.isExist = function(v) {
|
|
1380
1380
|
return typeof v !== 'undefined';
|
|
1381
1381
|
};
|
|
1382
1382
|
|
|
1383
|
-
exports.isEmptyObject = function(obj) {
|
|
1383
|
+
exports$1.isEmptyObject = function(obj) {
|
|
1384
1384
|
return Object.keys(obj).length === 0;
|
|
1385
1385
|
};
|
|
1386
1386
|
|
|
@@ -1389,7 +1389,7 @@ var util$3 = {};
|
|
|
1389
1389
|
* @param {*} target
|
|
1390
1390
|
* @param {*} a
|
|
1391
1391
|
*/
|
|
1392
|
-
exports.merge = function(target, a, arrayMode) {
|
|
1392
|
+
exports$1.merge = function(target, a, arrayMode) {
|
|
1393
1393
|
if (a) {
|
|
1394
1394
|
const keys = Object.keys(a); // will return an array of own properties
|
|
1395
1395
|
const len = keys.length; //don't make it inline
|
|
@@ -1406,8 +1406,8 @@ var util$3 = {};
|
|
|
1406
1406
|
return Object.assign(b,a);
|
|
1407
1407
|
} */
|
|
1408
1408
|
|
|
1409
|
-
exports.getValue = function(v) {
|
|
1410
|
-
if (exports.isExist(v)) {
|
|
1409
|
+
exports$1.getValue = function(v) {
|
|
1410
|
+
if (exports$1.isExist(v)) {
|
|
1411
1411
|
return v;
|
|
1412
1412
|
} else {
|
|
1413
1413
|
return '';
|
|
@@ -1417,9 +1417,9 @@ var util$3 = {};
|
|
|
1417
1417
|
// const fakeCall = function(a) {return a;};
|
|
1418
1418
|
// const fakeCallNoReturn = function() {};
|
|
1419
1419
|
|
|
1420
|
-
exports.isName = isName;
|
|
1421
|
-
exports.getAllMatches = getAllMatches;
|
|
1422
|
-
exports.nameRegexp = nameRegexp;
|
|
1420
|
+
exports$1.isName = isName;
|
|
1421
|
+
exports$1.getAllMatches = getAllMatches;
|
|
1422
|
+
exports$1.nameRegexp = nameRegexp;
|
|
1423
1423
|
} (util$3));
|
|
1424
1424
|
|
|
1425
1425
|
const util$2 = util$3;
|