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

kreuzberg.extras.UriHelper.scala Maven / Gradle / Ivy

There is a newer version: 0.10.3
Show newest version
package kreuzberg.extras

import java.net.{URLDecoder, URLEncoder}
import java.nio.charset.StandardCharsets

object UriHelper {
  inline def encodeUriComponent(s: String): String = URLEncoder.encode(s, StandardCharsets.UTF_8)

  inline def decodeUriComponent(s: String): String = URLDecoder.decode(s, StandardCharsets.UTF_8)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy