UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

7 lines 214 B
/** * Returns true if string represents a localhost IP (v4 or v6) */ export function isLocalhostIP(ip) { return ip === "127.0.0.1" || ip === "::1" || ip === "0:0:0:0:0:0:0:1"; } //# sourceMappingURL=ip.js.map