We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa52f30 commit b782955Copy full SHA for b782955
packages/cx2js/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@js4cytoscape/cx2js",
3
- "version": "0.6.10",
+ "version": "0.6.11",
4
"description": "A cx to Cytoscape JS utility",
5
"repository": {
6
"type": "git",
packages/cx2js/src/cy_network_utils.js
@@ -8,9 +8,9 @@ class CyNetworkUtils {
8
9
rawCXtoNiceCX(rawCX) {
10
11
- var niceCX = {};
12
- niceCX['edges'] = {};
13
- niceCX['nodes'] = {};
+ var niceCX = {'edges': {},
+ 'nodes':{}
+ };
14
15
for (var i = 0; i < rawCX.length; i++) {
16
var fragment = rawCX[i];
0 commit comments