UNPKG

@moartube/moartube-client

Version:

A free, open-source, self-hosted, anonymous, decentralized video/live stream platform. Scalable via Cloudflare, works in the cloud or from home WiFi.

9 lines (7 loc) 182 B
function isPortValid(port) { port = Number(port); return port != null && !Number.isNaN(port) && (port > 0 && port <= 65535); } module.exports = { isPortValid };