Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 697 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 697 Bytes

🌍 » What is that?

EN: This useless packet checks a string for a keyword related to protocol http or https.
PL: Ten bezużyteczny moduł sprawdza string pod kątem słowa kluczowego związanego protokołem z http lub https.

🤔 » How to install?

$ npm install is-http-or-https

📝 » Examples

const checkUrl = require('is-http-or-https');

const url = 'https://example.com';

console.log(checkUrl.protocol(url)); // String => https
console.log(checkUrl.http(url));     // Boolean => false
console.log(checkUrl.https(url));    // Boolean => true

🤝 » Help

Open new Issue on Github.