isPort.js 156 B

12345678
  1. import isInt from './isInt';
  2. export default function isPort(str) {
  3. return isInt(str, {
  4. allow_leading_zeroes: false,
  5. min: 0,
  6. max: 65535
  7. });
  8. }