GLib.hostname_is_ascii_encoded

function hostname_is_ascii_encoded(hostname: String): Boolean {
    // Gjs wrapper for g_hostname_is_ascii_encoded()
}
  

Tests if hostname contains segments with an ASCII-compatible encoding of an Internationalized Domain Name. If this returns true, you should decode the hostname with GLib.hostname_to_unicode before displaying it to the user.

Note that a hostname might contain a mix of encoded and unencoded segments, and so it is possible for GLib.hostname_is_non_ascii and GLib.hostname_is_ascii_encoded to both return true for a name.

Since 2.22

hostname

a hostname

Returns

true if hostname contains any ASCII-encoded segments.