All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.apollographql.apollo.api.http.HttpHeaders.kt Maven / Gradle / Ivy

The newest version!
@file:JvmName("HttpHeaders")
package com.apollographql.apollo.api.http

import kotlin.jvm.JvmName

/**
 * Get the value of the "name" header. HTTP header names are case insensitive, see https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
 *
 * @param name: the name of the header
 */
fun List.valueOf(name: String): String? = firstOrNull { it.name.equals(name, true) }?.value




© 2015 - 2024 Weber Informatics LLC | Privacy Policy