()
| 8 | }; |
| 9 | |
| 10 | const getSharedResourcesInstance = (): Element | null => { |
| 11 | if (typeof document === "undefined") { |
| 12 | return null; |
| 13 | } |
| 14 | return getSingletonElementInstance(`meta[name="ui5-shared-resources"]`, document.head, getMetaDomEl); |
| 15 | }; |
| 16 | |
| 17 | /** |
| 18 | * Use this method to initialize/get resources that you would like to be shared among UI5 Web Components runtime instances. |
no test coverage detected
searching dependent graphs…