ultimatepos/Modules/Communication/Resources/js/utils/config.js

9 lines
190 B
JavaScript
Vendored

export function getConfig() {
return window.__COMM__ || {};
}
export function getLang(key, fallback = '') {
const lang = getConfig().lang || {};
return lang[key] ?? fallback;
}