astro/docs/src/util.ts

4 lines
163 B
TypeScript
Raw Normal View History

2021-08-02 06:38:50 +00:00
export function getLanguageFromURL(pathname:string) {
const langCodeMatch = pathname.match(/\/([a-z]{2})\//);
return langCodeMatch ? langCodeMatch[1] : 'en';
}