UNPKG

ip-subnet

Version:

A library of IP Subnetting utility functions

10 lines (9 loc) 230 B
export declare class IP { private _ipAddress; constructor(ipAddress: string); toArray(): number[]; toString(): string; getNetworkAddress(netMask: IP): IP; toBinaryString(): string; isMask(): boolean; }