UNPKG

fast-nginx

Version:

A fast and easy-to-use CLI tool to configure your domain with Nginx using just a single command.

6 lines (5 loc) 150 B
function validatePort(port) { const portNum = Number.parseInt(port); return portNum > 0 && portNum <= 65535; } module.exports = validatePort;