isIp function

bool isIp(
  1. String hostname
)

Implementation

bool isIp(String hostname) {
  return isProbablyIpv4(hostname) || isProbablyIpv6(hostname);
}