Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/netmask

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/netmask - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

3

netmask/index.d.ts

@@ -5,2 +5,3 @@ // Type definitions for netmask 2.0

// JanST123 <https://github.com/JanST123>
// Junxiao Shi <https://github.com/yoursunny>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

@@ -78,3 +79,3 @@

*/
constructor(net: string, mask?: string);
constructor(net: string, mask?: string | number);
}
{
"name": "@types/netmask",
"version": "2.0.1",
"version": "2.0.2",
"description": "TypeScript definitions for netmask",

@@ -17,2 +17,7 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/netmask",

"githubUsername": "JanST123"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny",
"githubUsername": "yoursunny"
}

@@ -29,4 +34,4 @@ ],

"dependencies": {},
"typesPublisherContentHash": "3806e60ccf292ac0293c7128ba7aae79d12ba685460313094651a25e17573517",
"typesPublisherContentHash": "b05120c697d21d8de3cfa26af730280c18384890024183f17c2449a6e041f773",
"typeScriptVersion": "4.3"
}

@@ -9,87 +9,5 @@ # Installation

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/netmask.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/netmask/index.d.ts)
````ts
// Type definitions for netmask 2.0
// Project: https://github.com/rs/node-netmask
// Definitions by: Matt Frantz <https://github.com/mhfrantz>
// JanST123 <https://github.com/JanST123>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* converts long to an ip address
*/
export function long2ip(long: number): string;
/**
* converts ip address to long
*/
export function ip2long(ip: string): number;
export class Netmask {
/**
* The base address of the network block as a string (eg: 216.240.32.0). Base does not give an indication of the size of the network block.
*/
base: string;
/**
* The netmask as a string (eg: 255.255.255.0).
*/
mask: string;
/**
* The netmask as a number of bits in the network portion of the address for this block (eg: 24).
*/
bitmask: number;
/**
* The host mask which is the opposite of the netmask (eg: 0.0.0.255).
*/
hostmask: string;
/**
* The blocks broadcast address (eg: 192.168.1.0/24 => 192.168.1.255)
*/
broadcast: string;
/**
* The number of IP addresses in a block (eg: 256).
*/
size: number;
/**
* First useable address
*/
first: string;
/**
* Last useable address
*/
last: string;
maskLong: number;
netLong: number;
/**
* Returns a true if the IP number ip is part of the network. That is, a true value is returned if ip is between base and broadcast.
* If a Netmask object or a block is given, it returns true only of the given block fits inside the network.
*/
contains(address: string | Netmask | number): boolean;
/**
* Similar to the Array prototype method. It loops through all the useable addresses, ie between first and last.
*/
forEach(cb: (ip: string, long: number, index: number) => void): void;
/**
* Without a count, return the next block of the same size after the current one. With a count, return the Nth block after the current one.
* A count of -1 returns the previous block. Undef will be returned if out of legal address space.
*/
next(count?: number): Netmask;
/**
* The netmask in base/bitmask format (e.g., '216.240.32.0/24')
*/
toString(): string;
/**
*
* @param net A network - e.g 216.240.32.0/24
* @param mask - optional netmask if not provided in `net`
*/
constructor(net: string, mask?: string);
}
````
### Additional Details
* Last updated: Mon, 19 Jun 2023 17:32:47 GMT
* Last updated: Wed, 28 Jun 2023 14:02:43 GMT
* Dependencies: none

@@ -99,2 +17,2 @@ * Global values: none

# Credits
These definitions were written by [Matt Frantz](https://github.com/mhfrantz), and [JanST123](https://github.com/JanST123).
These definitions were written by [Matt Frantz](https://github.com/mhfrantz), [JanST123](https://github.com/JanST123), and [Junxiao Shi](https://github.com/yoursunny).
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc