()
| 23 | type ShareDataLengthBytes = 2 | 4; |
| 24 | |
| 25 | export async function loadShareDataCompression(): Promise<void> { |
| 26 | if (fflateLoaded) return; |
| 27 | const fflate = await import('fflate'); |
| 28 | deflateSync = fflate.deflateSync; |
| 29 | inflateSync = fflate.inflateSync; |
| 30 | fflateLoaded = true; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Shareable UI configuration that gets embedded in the URL. |
no outgoing calls
no test coverage detected