From 6b3a6ddb39c5aa9dbc6e62631d82844c6973f6d5 Mon Sep 17 00:00:00 2001 From: "Alex.F" Date: Mon, 16 Aug 2021 00:21:12 +0800 Subject: [PATCH] fix lint --- editors/code/src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editors/code/src/util.ts b/editors/code/src/util.ts index 5eac9a227a7..aa57081a5f3 100644 --- a/editors/code/src/util.ts +++ b/editors/code/src/util.ts @@ -131,7 +131,7 @@ export function setContextValue(key: string, value: any): Thenable { export function memoizeAsync(func: (this: TThis, arg: Param) => Promise) { const cache = new Map(); - return async function (this: TThis, arg: Param) { + return async function(this: TThis, arg: Param) { const cached = cache.get(arg); if (cached) return cached;