deno.land / x / lume@v2.1.4 / core / utils / net.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
export function localIp(): string | undefined { for (const info of Deno.networkInterfaces()) { if (info.family !== "IPv4" || info.address.startsWith("127.")) { continue; }
return info.address; }}
lume

Version Info

Tagged at
7 months ago