summaryrefslogtreecommitdiff
path: root/examples/docs/src/languages.ts
blob: b44d2ba867a630c233337a77ee12d7d09b094245 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { KNOWN_LANGUAGES, KNOWN_LANGUAGE_CODES } from './config';
export { KNOWN_LANGUAGES, KNOWN_LANGUAGE_CODES };

export const langPathRegex = /\/([a-z]{2}-?[A-Z]{0,2})\//;

export function getLanguageFromURL(pathname: string) {
	const langCodeMatch = pathname.match(langPathRegex);
	const langCode = langCodeMatch ? langCodeMatch[1] : 'en';
	return langCode as (typeof KNOWN_LANGUAGE_CODES)[number];
}