UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

7 lines (6 loc) 199 B
/** * Returns true if string represents a localhost IP (v4 or v6) */ export function isLocalhostIP(ip: string): boolean { return ip === "127.0.0.1" || ip === "::1" || ip === "0:0:0:0:0:0:0:1"; }