UNPKG

pixiu-number-toolkit

Version:
13 lines (11 loc) 374 B
declare function isIpInRange(ip: string, cidrIp: string, cidrBits: number): boolean; declare function cidrCalculator(ip: string, cidrBits: number): { networkAddress: string; broadcastAddress: string; firstUsableIp: string; lastUsableIp: string; totalIps: number; usableIps: number; subnetMask: string; }; export { cidrCalculator, isIpInRange };