Your IP : 216.73.216.182


Current Path : /var/www/html/components/com_community/assets/app/src/utils/
Upload File :
Current File : /var/www/html/components/com_community/assets/app/src/utils/language.js

export default function (key) {
    if (typeof key !== 'string' || !key.length)
        return;

    var data = joms.language;

    key = key.split('.');
    while (key.length) {
        data = data[key.shift()];
    }

    return data;
}