Skip to content

Commit c089135

Browse files
committed
Change arrow function to exported function
1 parent 2dad33f commit c089135

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ql-vscode/src/vscode-tests/utils/bundled-pack-helpers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface QueryPackFS {
1010
directoryContents: (name: string) => string[];
1111
}
1212

13-
export const readBundledPack = async (base64Pack: string): Promise<QueryPackFS> => {
13+
export async function readBundledPack(base64Pack: string): Promise<QueryPackFS> {
1414
const buffer = Buffer.from(base64Pack, 'base64');
1515
const stream = Readable.from(buffer);
1616

@@ -73,4 +73,4 @@ export const readBundledPack = async (base64Pack: string): Promise<QueryPackFS>
7373
.map(dir => dir.substring(name.length + 1));
7474
},
7575
};
76-
};
76+
}

0 commit comments

Comments
 (0)