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

eu.kevin.api.extensions.UrlExtensions.kt Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package eu.kevin.api.extensions

import io.ktor.http.*

internal fun Url.appendQueryParameter(name: String, value: String?) =
    if (value == null) this
    else this.copy(
        parameters = parameters + parametersOf(name, value)
    )




© 2015 - 2025 Weber Informatics LLC | Privacy Policy