0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00
astro/examples/docs/src/languages.ts

9 lines
294 B
TypeScript
Raw Normal View History

2021-08-26 17:02:38 -05:00
import { KNOWN_LANGUAGES } from './config.js';
2021-08-13 19:58:00 -05:00
2021-08-26 17:02:38 -05:00
export const KNOWN_LANGUAGE_CODES = Object.values(KNOWN_LANGUAGES);
2021-08-13 19:58:00 -05:00
2021-08-26 17:02:38 -05:00
export function getLanguageFromURL(pathname: string) {
const langCodeMatch = pathname.match(/\/([a-z]{2}-?[A-Z]{0,2})\//);
return langCodeMatch ? langCodeMatch[1] : 'en';
}