()
| 202 | }; |
| 203 | |
| 204 | const applyOpenUI5Configuration = () => { |
| 205 | const openUI5Support = getFeature<typeof OpenUI5Support>("OpenUI5Support"); |
| 206 | if (!openUI5Support || !openUI5Support.isOpenUI5Detected()) { |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | const OpenUI5Config = openUI5Support.getConfigurationSettingsObject(); |
| 211 | initialConfig = merge(initialConfig, OpenUI5Config); |
| 212 | }; |
| 213 | |
| 214 | const initConfiguration = () => { |
| 215 | if (typeof document === "undefined" || initialized) { |
no test coverage detected
searching dependent graphs…