New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@journeyapps/core-xml

Package Overview
Dependencies
Maintainers
2
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@journeyapps/core-xml - npm Package Compare versions

Comparing version 0.0.0-dev.ce2a75b.57d406a to 0.0.0-dev.d189da2.640fc7d

2

dist/src/index.js

@@ -10,3 +10,3 @@ "use strict";

var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};

@@ -13,0 +13,0 @@ Object.defineProperty(exports, "__esModule", { value: true });

@@ -11,3 +11,3 @@ "use strict";

var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};

@@ -14,0 +14,0 @@ Object.defineProperty(exports, "__esModule", { value: true });

@@ -197,3 +197,4 @@ "use strict";

};
if (type == null) {
// The specific tag exclusions if for the specs
if (type == null && tag != 'context-menu' && tag != 'button') {
result.type = null;

@@ -287,19 +288,31 @@ result.errors.push(warning(element, "Invalid element '" + tag + "'"));

return function (valuesString, element) {
var values = valuesString.split(',');
var invalidValues = [];
Array.prototype.forEach.call(values, function (value) {
if (options.indexOf(value) == -1) {
invalidValues.push(value);
}
});
if (invalidValues.length === 0) {
return validateMultiOptions(valuesString, element, options, customMessage);
};
};
exports.attribute.multiOptionListWithFunctions = function multiOptionList(options, functionPrefix, customMessage) {
return function (valuesString, element) {
if (valuesString.indexOf(functionPrefix) === 0) {
// function token expression, therefore allow
return valuesString;
}
else {
var message = 'Invalid values: ' + invalidValues + '. ';
var extraMessage = customMessage == null ? element.name + ' values must be from ' + options : customMessage;
throw new Error(message + extraMessage);
}
return validateMultiOptions(valuesString, element, options, customMessage);
};
};
function validateMultiOptions(valuesString, element, options, customMessage) {
var values = valuesString.split(',');
var invalidValues = [];
values.forEach((value) => {
if (options.indexOf(value) == -1) {
invalidValues.push(value);
}
});
if (invalidValues.length === 0) {
return valuesString;
}
else {
var message = 'Invalid values: ' + invalidValues + '. ';
var extraMessage = customMessage == null ? element.name + ' values must be from ' + options : customMessage;
throw new Error(message + extraMessage);
}
}
// filter can be an array of strings, or a comma-separated list

@@ -306,0 +319,0 @@ function children(element, filter) {

{
"name": "@journeyapps/core-xml",
"version": "0.0.0-dev.ce2a75b.57d406a",
"version": "0.0.0-dev.d189da2.640fc7d",
"description": "Journey JS library",

@@ -18,3 +18,3 @@ "main": "./dist/src/node.js",

"devDependencies": {
"@journeyapps/core-test-helpers": "0.0.0-dev.ce2a75b.57d406a"
"@journeyapps/core-test-helpers": "0.0.0-dev.d189da2.640fc7d"
},

@@ -26,3 +26,3 @@ "files": [

],
"gitHead": "a89d58f67eb348ba392dd85d4db6633652c4a6e1"
"gitHead": "abda5965ffb52a24740088719261a3d0036ef7db"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc