ghaction-upx/node_modules/isurl
2020-04-03 08:12:31 +00:00
..
index.js Update node_modules 2020-01-17 09:39:25 +01:00
LICENSE Update node_modules 2020-01-17 09:39:25 +01:00
package.json Update node_modules 2020-04-03 08:12:31 +00:00
README.md Update node_modules 2020-01-17 09:39:25 +01:00

isurl NPM Version Build Status

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