utils/node_modules/validator/es/lib/isPort.js

7 lines
123 B
JavaScript
Raw Normal View History

2024-02-07 01:33:07 -05:00
import isInt from './isInt';
export default function isPort(str) {
return isInt(str, {
min: 0,
max: 65535
});
}