返回 AiToEarn
layout.utils.ts
根目录 / project / aitoearn-web / src / app / layout / layout.utils.ts
1 export function removeLocalePrefix(path: string): string {
2 return path.replace(/^\/[a-z]{2}(-[A-Z]{2})?/, '') || '/'
3 }
4
4 lines TYPESCRIPT