You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
432 B
20 lines
432 B
"use strict"; |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.default = isPort; |
|
|
|
var _isInt = _interopRequireDefault(require("./isInt")); |
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
|
|
|
function isPort(str) { |
|
return (0, _isInt.default)(str, { |
|
min: 0, |
|
max: 65535 |
|
}); |
|
} |
|
|
|
module.exports = exports.default; |
|
module.exports.default = exports.default; |