blob: bbfc7679b5edef5087032f4627a202492f589a46 (
plain)
1
2
3
4
5
6
7
|
"use strict";
function handleRequest(request, response) {
response.processAsync();
response.setHeader("Content-Type", "text/event-stream");
response.write("data: Why so serious?\n\n");
response.finish();
}
|