new(basic.gblib): SET CONTEXT new keyword.

This commit is contained in:
Rodrigo Rodriguez 2024-06-27 19:25:21 -03:00
parent e8051f59ad
commit 0e2586ba0c

View file

@ -2676,8 +2676,8 @@ export class SystemKeywords {
let template = await this.internalGetDocument(client, baseUrl, path, file);
let url = template['@microsoft.graph.downloadUrl'];
const res = await fetch(url);
let data: any = Buffer.from(await res.arrayBuffer());
let buf: any = Buffer.from(await res.arrayBuffer());
const data = new Uint8Array(buf);
const pdf = await getDocument({ data }).promise;
let pages = []