0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00
astro/docs/src/util.ts

5 lines
177 B
TypeScript
Raw Normal View History

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