devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
18 lines (17 loc) • 580 B
JavaScript
/**
* DevExtreme (localization/parentLocale.js)
* Version: 20.1.7
* Build date: Tue Aug 25 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
var PARENT_LOCALE_SEPARATOR = "-";
module.exports = function(parentLocales, locale) {
var parentLocale = parentLocales[locale];
if (parentLocale) {
return "root" !== parentLocale && parentLocale
}
return locale.substr(0, locale.lastIndexOf(PARENT_LOCALE_SEPARATOR))
};