square_svg.sjs (558B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 "use strict"; 4 5 function handleRequest(request, response) { 6 response.setStatusLine(request.httpVersion, 200, "OK"); 7 response.setHeader("Access-Control-Allow-Origin", "*", false); 8 response.setHeader("Access-Control-Allow-Headers", "content-type", false); 9 response.setHeader("Content-Type", "image/svg+xml", false); 10 response.write( 11 `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" /></svg>` 12 ); 13 }