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

@accordproject/concerto-core

Package Overview
Dependencies
Maintainers
6
Versions
889
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@accordproject/concerto-core - npm Package Compare versions

Comparing version 0.82.7-20191212180105 to 0.82.7-20191219144235

12

lib/serializer/resourcevalidator.js

@@ -302,8 +302,12 @@ /*

break;
case 'Double':
case 'Long':
case 'Integer':
case 'Double': {
if(dataType !== 'number') {
invalid = true;
}
if (!isFinite(obj)) {
invalid = true;
}
}
break;

@@ -425,3 +429,7 @@ case 'Boolean':

try {
value = JSON.stringify(value);
if (typeof value === 'number' && !isFinite(value)) {
value = value.toString();
} else {
value = JSON.stringify(value);
}
}

@@ -428,0 +436,0 @@ catch(err) {

2

package.json
{
"name": "@accordproject/concerto-core",
"version": "0.82.7-20191212180105",
"version": "0.82.7-20191219144235",
"description": "Core Implementation for the Concerto Modeling Language",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/accordproject/concerto",

Sorry, the diff of this file is too big to display

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