"ruoyi-ui/vscode:/vscode.git/clone" did not exist on "e6becb93379d53c377579d68293c14c36b1f95f8"
Commit 8ac6ac83 authored by Dave Machado's avatar Dave Machado
Browse files

update var declare formatting

parent 9c80c51d
......@@ -5,18 +5,20 @@ function setupMd(filename, anchor) {
if (err) {
return console.log(err);
}
var lines = text.split("\n");
var cur_line = 0;
var line = ""
var table_name = "";
var col_num = 0;
var cols = [];
var rows = [];
var lines = text.split("\n"),
cur_line = 0,
line = "",
table_name = "",
col_num = 0,
cols = [],
rows = [],
arr = [];
function read_line() {
return lines[cur_line++];
}
var arr = [];
while (true) {
var cols = [];
var rows = [];
......
This diff is collapsed.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment