UNPKG

unicast

Version:

Unicast implementation of UDP Datagram sockets.

17 lines (13 loc) 248 B
'use strict'; module.exports = isPort; /** * Check if argument is a valid port. * @param {number} port * @return {bool} */ function isPort(port) { if (!Number.isInteger(port)) { return false; } return port > 0 && port <= 0xffff; }