blob: 069413fd2f3c99e28b109fe67df2e7bc36e3e8e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { KNOWN_LANGUAGES } from './config';
export { KNOWN_LANGUAGES };
export const KNOWN_LANGUAGE_CODES = Object.values(KNOWN_LANGUAGES);
export const langPathRegex = /\/([a-z]{2}-?[A-Z]{0,2})\//;
export function getLanguageFromURL(pathname: string) {
const langCodeMatch = pathname.match(langPathRegex);
return langCodeMatch ? langCodeMatch[1] : 'en';
}
|