Small fixes
A selection of 80 fixes from 174 pull requests.
44.Range on a HEAD request
A HEAD request with an unsatisfiable Range returned 416. Range applies only to GET; HEAD should return the full metadata without a body.
11const rangeHeader = request.headers["range"]const rangeHeader = request.method === "GET" ? request.headers["range"] : undefined