UNPKG

@ui5/webcomponents-localization

Version:
17 lines 503 B
// called from sapui5, but not supported by us const legacyFormats = ["sapUiLegacyTimeFormat", "sapUiABAPTimeFormat", "sapUiLegacyDateFormat", "sapUiABAPDateFormat", "sapUiLegacyNumberFormat", "sapUiABAPNumberFormat"]; export default { getWritableInstance() { return { get({ name }) { if (legacyFormats.includes(name)) { return undefined; } throw new Error("Localization :: missing configuration requested."); } }; }, Type: {} };