docs: Fix all the TODOCS. #39
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 31m17s

This commit is contained in:
2025-08-02 09:07:45 -04:00
parent c59fba817d
commit 85b23437b3
2 changed files with 62 additions and 67 deletions

View File

@@ -8,7 +8,7 @@
/**
* Parse a URL into protocol, host, path, and port parts.
* @param url
* @returns An object of the URL parts.
* @return An object of the URL parts.
*/
function parseUrl(url) {
// XXX: Hack.
@@ -24,7 +24,7 @@ function parseUrl(url) {
/**
* Parse an HTTP response into headers and body content.
* @param data The response data, headers and body included.
* @returns headers and body data.
* @return headers and body data.
*/
function parseResponse(data) {
let firstLine;