Current section

Files

Jump to
udia assets node_modules mout src date i18n_.js
Raw

assets/node_modules/mout/src/date/i18n_.js

define(['../object/mixIn', './i18n/en-US'], function(mixIn, enUS){
// we also use mixIn to make sure we don't affect the original locale
var activeLocale = mixIn({}, enUS, {
// we expose a "set" method to allow overriding the global locale
set : function(localeData){
mixIn(activeLocale, localeData);
}
});
return activeLocale;
});