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

io.lemonlabs.uri.inet.PunycodeSupport.scala Maven / Gradle / Ivy

The newest version!
package io.lemonlabs.uri.inet

import org.scalajs.dom.URL

trait PunycodeSupport {
  def toPunycode(host: String): String = {
    // the URL class IDN formats and escapes the host
    new URL(s"http://$host").host
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy