yingsa/server/node_modules/validator/es/lib/isPort.js
2026-01-20 08:50:50 +08:00

8 lines
156 B
JavaScript

import isInt from './isInt';
export default function isPort(str) {
return isInt(str, {
allow_leading_zeroes: false,
min: 0,
max: 65535
});
}