You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
林华焜
b6f8f922cf
|
4 years ago | |
---|---|---|
.. | ||
LICENSE | 4 years ago | |
README.md | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago |
README.md
isurl
Checks whether a value is a WHATWG
URL
.
Works cross-realm/iframe and despite @@toStringTag.
Installation
Node.js >= 4
is required. To install, type this at the command line:
npm install isurl
Usage
const isURL = require('isurl');
isURL('http://domain/'); //-> false
isURL(new URL('http://domain/')); //-> true
Optionally, acceptance can be extended to incomplete URL
implementations that lack searchParams
(which are common in many modern web browsers):
const url = new URL('http://domain/?query');
console.log(url.searchParams); //-> undefined
isURL.lenient(url); //-> true