Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

638359 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/ipaddr.js/lib

ipaddr.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/ipaddr.js/lib/ipaddr.js
119 Views
0 Comments
(function() {
var expandIPv6, ipaddr, ipv4Part, ipv4Regexes, ipv6Part, ipv6Regexes, matchCIDR, root, zoneIndex;

ipaddr = {};

root = this;

if ((typeof module !== "undefined" && module !== null) && module.exports) {
ipaddr.js.d.ts cody/Khushigupta8/Hotel-Management-Webpage/node_modules/ipaddr.js/lib/ipaddr.js.d.ts
107 Views
0 Comments
declare module "ipaddr.js" {
type IPv4Range = 'unicast' | 'unspecified' | 'broadcast' | 'multicast' | 'linkLocal' | 'loopback' | 'carrierGradeNat' | 'private' | 'reserved';
type IPv6Range = 'unicast' | 'unspecified' | 'linkLocal' | 'multicast' | 'loopback' | 'uniqueLocal' | 'ipv4Mapped' | 'rfc6145' | 'rfc6052' | '6to4' | 'teredo' | 'reserved';

interface RangeList<T> {
[name: string]: [T, number] | [T, number][];
}