fix(basic.gblib): Allow MERGE keyword in storage #386. @othonlima

This commit is contained in:
Rodrigo Rodriguez 2024-02-08 14:40:58 -03:00
parent 8d523eeb24
commit 5456fbad9e

View file

@ -1096,9 +1096,9 @@ export class KeywordsExpressions {
];
keywords[i++] = [
/^\s*(MERGE)(\s*)(.*)/gim,
/^\s*MERGE\s*(.*)/gim,
($0, $1, $2, $3) => {
return `await img.mergeImage({pid: pid, files: [${$3}]})`;
return `await img.mergeImage({pid: pid, files: [${$2}]})`;
}
];