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

commonMain.com.collectiveidea.ktor.IsJsonHelpers.kt Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy