Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
xPAGCOE authored Feb 16, 2024
1 parent c0c5186 commit 5ab7d8e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions SAC DataFrame/sacdataframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ var getScriptPromisify = (src) => {

if(data != null) {

console.log("Received data");
console.log(data);

/*
var data_new = new Array();

for(var i=0, i<data.length, i++) {
Expand All @@ -101,11 +101,9 @@ var getScriptPromisify = (src) => {
}

data_new[i] = new Array();
/*
for(var j=0, j<data[i].data.length, j++) {
console.log(data[i]);
switch(data[i].data[j].type) {
case string:
data_new[i][j] = data[i].data[j].strValue;
Expand All @@ -122,11 +120,11 @@ var getScriptPromisify = (src) => {
default:
break;
}
*/
}
}

df = new this.dfd.DataFrame(data_new, options);
*/
}

}
Expand Down

0 comments on commit 5ab7d8e

Please sign in to comment.