mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
fetch("delivering.sjs?task=header&worker=true")
|
|
.then(r => r.text())
|
|
.then(text => {
|
|
postMessage("All good!");
|
|
});
|