Skip to content
Snippets Groups Projects
Select Git revision
  • 72365ebc85e798cd02dcd6ccf280aa1360ccc34e
  • master default protected
2 results

OtherClass.java

Blame
  • Forked from Eleanor McMurtry / emcmurtry-project-1
    Source project has a limited visibility.
    html.js 256 B
     (head, req) => {
      provides("html", () => {
        send(`<table border="2">`);
        var row;
        while (row = getRow()) {
          send(`<tr><td>${JSON.stringify(row.key)}</td><td><td>${JSON.stringify(row.value)}</td></tr>`);
        }
        send(`</table>`);
      });
    }