commonMain.com.huanshankeji.web.cors.Origin.kt Maven / Gradle / Ivy
The newest version!
package com.huanshankeji.web.cors
fun origin(isHttps: Boolean, host: String, port: Int?) =
(if (isHttps) "https" else "http") + "://" + host + (if (port !== null) ":$port" else "")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy