summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/isPort.js
blob: 6490cad213c04333b77d5a04847fb0476b418f31 (plain)
1
2
3
4
5
6
7
import isInt from './isInt';
export default function isPort(str) {
  return isInt(str, {
    min: 0,
    max: 65535
  });
}