fix(basic.gblib): fix dynamic parameter generation.
This commit is contained in:
parent
f2889879a6
commit
11b0ea24e6
2 changed files with 7 additions and 4 deletions
|
@ -93,9 +93,9 @@
|
||||||
"botbuilder-ai": "4.18.0",
|
"botbuilder-ai": "4.18.0",
|
||||||
"botbuilder-dialogs": "4.18.0",
|
"botbuilder-dialogs": "4.18.0",
|
||||||
"botframework-connector": "4.18.0",
|
"botframework-connector": "4.18.0",
|
||||||
"botlib": "3.0.9",
|
"botlib": "3.0.11",
|
||||||
"c3-chart-maker": "0.2.8",
|
"c3-chart-maker": "0.2.8",
|
||||||
"cd": "^0.3.3",
|
"cd": "0.3.3",
|
||||||
"chatgpt": "2.4.2",
|
"chatgpt": "2.4.2",
|
||||||
"chrome-remote-interface": "0.31.3",
|
"chrome-remote-interface": "0.31.3",
|
||||||
"cli-progress": "3.11.2",
|
"cli-progress": "3.11.2",
|
||||||
|
@ -123,7 +123,7 @@
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"luxon": "3.1.0",
|
"luxon": "3.1.0",
|
||||||
"mammoth": "1.5.1",
|
"mammoth": "1.5.1",
|
||||||
"mime-types": "^2.1.35",
|
"mime-types": "2.1.35",
|
||||||
"moment": "1.3.0",
|
"moment": "1.3.0",
|
||||||
"ms-rest-azure": "3.0.0",
|
"ms-rest-azure": "3.0.0",
|
||||||
"nexmo": "2.9.1",
|
"nexmo": "2.9.1",
|
||||||
|
@ -144,7 +144,7 @@
|
||||||
"prism-media": "1.3.4",
|
"prism-media": "1.3.4",
|
||||||
"public-ip": "6.0.1",
|
"public-ip": "6.0.1",
|
||||||
"punycode": "2.1.1",
|
"punycode": "2.1.1",
|
||||||
"puppeteer": "^19.8.0",
|
"puppeteer": "19.8.0",
|
||||||
"puppeteer-extra": "3.3.4",
|
"puppeteer-extra": "3.3.4",
|
||||||
"puppeteer-extra-plugin-minmax": "1.1.2",
|
"puppeteer-extra-plugin-minmax": "1.1.2",
|
||||||
"puppeteer-extra-plugin-stealth": "2.11.1",
|
"puppeteer-extra-plugin-stealth": "2.11.1",
|
||||||
|
|
|
@ -46,6 +46,9 @@ export class KeywordsExpressions {
|
||||||
if (accum.isConcatting) {
|
if (accum.isConcatting) {
|
||||||
accum.soFar[accum.soFar.length - 1] += ',' + curr;
|
accum.soFar[accum.soFar.length - 1] += ',' + curr;
|
||||||
} else {
|
} else {
|
||||||
|
if(curr===""){
|
||||||
|
curr = null;
|
||||||
|
}
|
||||||
accum.soFar.push(curr);
|
accum.soFar.push(curr);
|
||||||
}
|
}
|
||||||
if (curr.split('"').length % 2 == 0) {
|
if (curr.split('"').length % 2 == 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue