UNPKG

250 BJavaScriptView Raw
1const isI18nEnabled = require('./is-enabled');
2
3/**
4 * 获取当前多语言配置类型
5 * @returns {String}
6 */
7module.exports = () =>
8 isI18nEnabled()
9 ? JSON.parse(process.env.KOOT_I18N_TYPE) || 'default'
10 : undefined;