cytoscape
Advanced tools
Comparing version 3.2.12 to 3.2.13
{ | ||
"name": "cytoscape", | ||
"version": "3.2.12", | ||
"version": "3.2.13", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Graph theory (a.k.a. network) library for analysis and visualisation", |
@@ -160,3 +160,6 @@ /* | ||
return this; | ||
} | ||
}, | ||
stopped: function(){ | ||
return true; | ||
}, | ||
}; | ||
@@ -163,0 +166,0 @@ |
@@ -65,3 +65,3 @@ let util = require( '../util' ); | ||
if( !property ){ return null; } // return null on property of unknown name | ||
if( value === undefined || value === null ){ return null; } // can't assign null | ||
if( value === undefined ){ return null; } // can't assign undefined | ||
@@ -224,3 +224,3 @@ // the property may be an alias | ||
pfValue: pfValArr, | ||
strValue: valArr.join( ' ' ), | ||
strValue: valArr.map( (val, i) => val + (unitsArr[i] || '') ).join(' '), | ||
bypass: propIsBypass, | ||
@@ -227,0 +227,0 @@ units: unitsArr |
@@ -1,1 +0,1 @@ | ||
module.exports = "3.2.12"; | ||
module.exports = "3.2.13"; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2628184
68660