commonMain.com.collectiveidea.ktor.IsJsonHelpers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twirp-kmm-runtime Show documentation
Show all versions of twirp-kmm-runtime Show documentation
Runtime for Twirp service generator PBandK plugin for use in Kotlin Multiplatform projects.
The newest version!
package com.collectiveidea.ktor
import io.ktor.client.statement.HttpResponse
import io.ktor.http.ContentType
import io.ktor.http.contentType
internal fun ContentType.isJson(): Boolean = match(ContentType.Application.Json)
internal fun HttpResponse.isJson(): Boolean = contentType()?.isJson() == true