-
Notifications
You must be signed in to change notification settings - Fork 42
Avoid large memory allocations when doing forEach in case netmask is large (e.g. /8) #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
ab8f40b
e5ed1e6
0da74f6
3e7134d
9a9cb3c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
{ | ||
"author": "Olivier Poitrey <rs@dailymotion.com>", | ||
"name": "netmask", | ||
"name": "@dschenkelman/netmask", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't override account. |
||
"description": "Parse and lookup IP network blocks", | ||
"version": "1.0.6", | ||
"version": "1.0.8", | ||
"homepage": "https://github.com/rs/node-netmask", | ||
"bugs": "https://github.com/rs/node-netmask/issues", | ||
"license": "MIT", | ||
"repository": | ||
{ | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/rs/node-netmask.git" | ||
}, | ||
"keywords": ["net", "mask", "ip", "network", "cidr", "netmask", "subnet", "ipcalc"], | ||
"keywords": [ | ||
"net", | ||
"mask", | ||
"ip", | ||
"network", | ||
"cidr", | ||
"netmask", | ||
"subnet", | ||
"ipcalc" | ||
], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't change format. |
||
"main": "./lib/netmask", | ||
"scripts": | ||
{ | ||
"scripts": { | ||
"prepublish": "coffee -c lib/*.coffee", | ||
"test": "vows --spec test/*" | ||
}, | ||
"engines": | ||
{ | ||
"engines": { | ||
"node": ">= 0.4.0" | ||
}, | ||
"devDependencies": | ||
{ | ||
"devDependencies": { | ||
"coffee-script": ">=1.2.0", | ||
"vows": "*" | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add spaces around operators.