An open API service indexing awesome lists of open source software.

https://github.com/leecjson/node-is-valid-port

Check whether is a valid port number or not
https://github.com/leecjson/node-is-valid-port

Last synced: 24 days ago
JSON representation

Check whether is a valid port number or not

Awesome Lists containing this project

README

          

# Usage
```javascript
const isValidPort = require('is-valid-port');

isValidPort(40202);
isValidPort(parseInt('932'));
```