blob: 1da30dee9fbd77a117f47d7f4a95e79c6781ba21 [file] [log] [blame]
const defaultLangKey = 'en';
const resolveI18nPath = langKey => path =>
langKey === defaultLangKey ? path : `${langKey}/${path}`;
module.exports = {
defaultLangKey,
resolveI18nPath
};