Select Git revision
OtherClass.java
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>`);
});
}