How to use the includes function from ip

Find comprehensive JavaScript ip.includes code examples handpicked from public code repositorys.

762
763
764
765
766
767
768
769
770
771
}

async getIPv4Addresses() {
  let ip4s = await exec(`ip addr show dev ${this.name} | awk '/inet /' | awk '{print $2}'`, {encoding: "utf8"}).then((result) => result.stdout.trim()).catch((err) => null) || null;
  if (ip4s)
    ip4s = ip4s.split("\n").filter(l => l.length > 0).map(ip => ip.includes("/") ? ip : `${ip}/32`);
  return ip4s;
}

async getIPv6Addresses() {
fork icon0
star icon0
watch icon0