UNPKG

@ui5/webcomponents-localization

Version:
22 lines (20 loc) 500 B
/*global Map */ /* * ${copyright} */ var mRegistry = new Map(); /** * @private * @sap-restricted */ var _Calendars = { get: function (sCalendarType) { if (!mRegistry.has(sCalendarType)) { throw new Error("Required calendar type: " + sCalendarType + " not loaded."); } return mRegistry.get(sCalendarType); }, set: function (sCalendarType, CalendarClass) { mRegistry.set(sCalendarType, CalendarClass); } }; export default _Calendars;