UNPKG

next-i18next

Version:

The easiest way to translate your NextJs apps.

13 lines (10 loc) 245 B
export const subpathFromLng = (config, language) => { if (typeof language !== 'string') { return null; } const subpath = config.localeSubpaths[language]; if (typeof subpath !== 'string') { return null; } return subpath; };