Skip to content

stevenvachon/isurl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

isurl NPM Version File Size Build Status Dependency Monitor

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

About

Determines whether a value is a WHATWG URL.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published