fn
fn status_text(code: int) -> string
Return the standard reason phrase for an HTTP status code. Unknown or unassigned codes return "Unknown".
status_text(200); // "OK"
status_text(404); // "Not Found"
status_text(599); // "Unknown"