blob: 027863e33e0457449173e82bc942c3ae22764eee (
plain)
1
2
3
4
5
6
7
|
// Responds to '/clientId' with the request's clientId.
self.addEventListener('fetch', e => {
if (new URL(e.request.url).pathname === '/clientId') {
e.respondWith(new Response(JSON.stringify({clientId: e.clientId})));
return;
}
});
|