cytoscape
Advanced tools
Comparing version 3.18.1 to 3.18.2
{ | ||
"build/cytoscape.umd.js": { | ||
"bundled": 936014, | ||
"minified": 348258, | ||
"gzipped": 108399 | ||
"bundled": 936046, | ||
"minified": 348268, | ||
"gzipped": 108401 | ||
}, | ||
"build/cytoscape.cjs.js": { | ||
"bundled": 862907, | ||
"minified": 367546, | ||
"gzipped": 110728 | ||
"bundled": 862937, | ||
"minified": 367556, | ||
"gzipped": 110729 | ||
}, | ||
"build/cytoscape.esm.js": { | ||
"bundled": 862734, | ||
"minified": 367403, | ||
"gzipped": 110686, | ||
"bundled": 862764, | ||
"minified": 367413, | ||
"gzipped": 110690, | ||
"treeshaked": { | ||
"rollup": { | ||
"code": 342906, | ||
"code": 342916, | ||
"import_statements": 51 | ||
}, | ||
"webpack": { | ||
"code": 344294 | ||
"code": 344304 | ||
} | ||
@@ -27,12 +27,12 @@ } | ||
"build/cytoscape.esm.min.js": { | ||
"bundled": 348063, | ||
"minified": 347565, | ||
"gzipped": 108217, | ||
"bundled": 348073, | ||
"minified": 347575, | ||
"gzipped": 108220, | ||
"treeshaked": { | ||
"rollup": { | ||
"code": 347059, | ||
"code": 347069, | ||
"import_statements": 0 | ||
}, | ||
"webpack": { | ||
"code": 348347 | ||
"code": 348357 | ||
} | ||
@@ -39,0 +39,0 @@ } |
{ | ||
"name": "cytoscape", | ||
"version": "3.18.1", | ||
"version": "3.18.2", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Graph theory (a.k.a. network) library for analysis and visualisation", |
@@ -112,3 +112,3 @@ <img style="width: 200px; height: 200px;" src="https://raw.githubusercontent.com/cytoscape/cytoscape.js/unstable/documentation/img/cytoscape-logo.png" width="200" height="200"></img> | ||
The default test scripts run directly agasinst the source code. Tests can alternatively be run on a built bundle. The library can be built on `node>=6`, but the library's bundle can be tested on `node>=0.10`. | ||
The default test scripts run directly against the source code. Tests can alternatively be run on a built bundle. The library can be built on `node>=6`, but the library's bundle can be tested on `node>=0.10`. | ||
@@ -115,0 +115,0 @@ * `test` : run all testing & linting |
@@ -146,2 +146,3 @@ import Heap from '../../heap'; | ||
cameFrom[ wid ] = cMin; | ||
cameFromEdge[ wid ] = e; | ||
} | ||
@@ -148,0 +149,0 @@ |
@@ -124,8 +124,8 @@ /*global console */ | ||
export const removeFromArray = ( arr, ele, manyCopies ) => { | ||
for( let i = arr.length; i >= 0; i-- ){ | ||
export const removeFromArray = ( arr, ele, oneCopy ) => { | ||
for( let i = arr.length - 1; i >= 0; i-- ){ | ||
if( arr[i] === ele ){ | ||
arr.splice( i, 1 ); | ||
if( !manyCopies ){ break; } | ||
if( oneCopy ){ break; } | ||
} | ||
@@ -132,0 +132,0 @@ } |
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
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
4255215
107185