Spaces:
Paused
Paused
File size: 234 Bytes
d4b85c0 | 1 2 3 4 5 6 7 8 | /**
* Returns an absolute Service Worker URL based on the given
* relative URL (known during the registration).
*/
export function getAbsoluteWorkerUrl(workerUrl: string): string {
return new URL(workerUrl, location.href).href
}
|