mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 12:53:07 +09:00
5 lines
164 B
JavaScript
5 lines
164 B
JavaScript
function handleRequest(request, response)
|
|
{
|
|
response.setHeader("Content-Type", "text/plain", false);
|
|
response.write(decodeURIComponent(request.queryString));
|
|
}
|