eh-url
v2.0.1
Published
Node.js package for check whether a string is a URL
Downloads
22
Readme
eh-url
Node.js package for check whether a string is a URL.
Prerequisites
Installation
npm install eh-url
Example
const EhUrl = require('eh-url');
const ehUrl = new EhUrl();
(async () => {
const url = await ehUrl.check('https://google.com.br/');
console.log(url);
})();