export function isFormURLEncoded(contentType) {
  try {
    const type = parse(contentType);
    return type.type === 'application' && type.subtype === 'x-www-form-urlencoded';
  } catch (e) {