summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/type-check-worker.js
blob: 1779e2323d92c4c1cf2b5b789932f8e57d860560 (plain)
1
2
3
4
5
6
7
8
9
10
let type = '';
try {
  importScripts('empty.js');
  type = 'classic';
} catch (e) {
  type = 'module';
}
onmessage = e => {
  e.source.postMessage(type);
};