Skip to content

Commit

Permalink
net: remove an unused internal module assertPort
Browse files Browse the repository at this point in the history
A module `assertPort` in `lib/internal/net.js` is not used anymore.

Refs: nodejs#11667
  • Loading branch information
watilde committed Mar 12, 2017
1 parent 055482c commit 23587b6
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions lib/internal/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ function isLegalPort(port) {
return +port === (+port >>> 0) && port <= 0xFFFF;
}


function assertPort(port) {
if (typeof port !== 'undefined' && !isLegalPort(port))
throw new RangeError('"port" argument must be >= 0 and < 65536');
}

module.exports = {
isLegalPort,
assertPort
isLegalPort
};

0 comments on commit 23587b6

Please sign in to comment.