mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
function handleRequest(request, response)
|
|
{
|
|
response.setHeader("Content-Type", "text/plain", false);
|
|
var rawdata = request.body.purge();
|
|
var data = String.fromCharCode.apply(null, rawdata);
|
|
for (var i = 0; i < 10; ++i) {
|
|
response.write(data);
|
|
}
|
|
}
|
|
|