Skip to content

Commit 6b3a6dd

Browse files
committed
fix lint
1 parent d13f6ba commit 6b3a6dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export function setContextValue(key: string, value: any): Thenable<void> {
131131
export function memoizeAsync<Ret, TThis, Param extends string>(func: (this: TThis, arg: Param) => Promise<Ret>) {
132132
const cache = new Map<string, Ret>();
133133

134-
return async function (this: TThis, arg: Param) {
134+
return async function(this: TThis, arg: Param) {
135135
const cached = cache.get(arg);
136136
if (cached) return cached;
137137

0 commit comments

Comments
 (0)