Small fixes
A selection of 80 fixes from 174 pull requests.
61.Media-type parameters
text/html; charset=utf-8 had no known extensions, although text/html worked. Strip parameters and whitespace before looking up the media type.
11return Option.fromUndefinedOr(typeToExtensions.get(type.toLowerCase()))return Option.fromUndefinedOr(typeToExtensions.get(type.split(";")[0].trim().toLowerCase()))