Searched refs:basePathCache (Results 1 – 3 of 3) sorted by relevance
744 const basePathCache = new Map<string, RegExp>(); constant747 if (basePathCache.has(basePath)) {748 return basePathCache.get(basePath)!;751 basePathCache.set(basePath, regex);
536 const basePathCache = new Map(); constant538 if (basePathCache.has(basePath)) {539 return basePathCache.get(basePath);542 basePathCache.set(basePath, regex);
1 …basePathCache = new Map<string, RegExp>();\n\nfunction getBasePathRegex(basePath: string) {\n if …