4.0.2 • Published 4 years ago
isurl v4.0.2
isurl

Determines whether a value is a WHATWG
URL
.
Works cross-realm/iframe and despite Symbol.toStringTag
.
Installation
Node.js >= 8
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 origin
, searchParams
and toJSON
properties (which are common in many modern web browsers):
const url = new URL('http://domain/?query');
console.log(url.searchParams); //-> undefined
isURL.lenient(url); //-> true
4.0.2
4 years ago
4.0.1
6 years ago
4.0.0
6 years ago
3.0.0
6 years ago
2.0.0
7 years ago
1.0.0
8 years ago
1.0.0-alpha6
8 years ago
1.0.0-alpha5
8 years ago
1.0.0-alpha4
8 years ago
1.0.0-alpha3
8 years ago
1.0.0-alpha2
8 years ago
1.0.0-alpha
8 years ago