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

This commit is contained in:
Rodrigo Rodriguez 2024-02-11 02:07:25 -03:00
parent d5bcf5f303
commit 972b0f9bfd

View file

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