isurl
Determines whether a value is a WHATWG URL.
Last updated 5 years ago by stevenvachon .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install isurl 
SYNC missed versions from official npm registry.

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

Current Tags

  • 4.0.2                                ...           latest (5 years ago)

12 Versions

  • 4.0.2                                ...           5 years ago
  • 4.0.1                                ...           7 years ago
  • 4.0.0                                ...           7 years ago
  • 3.0.0 [deprecated]           ...           7 years ago
  • 2.0.0                                ...           7 years ago
  • 1.0.0                                ...           9 years ago
  • 1.0.0-alpha6                                ...           9 years ago
  • 1.0.0-alpha5                                ...           9 years ago
  • 1.0.0-alpha4                                ...           9 years ago
  • 1.0.0-alpha3                                ...           9 years ago
  • 1.0.0-alpha2                                ...           9 years ago
  • 1.0.0-alpha                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 2
This Month 7
Last Day 0
Last Week 10
Last Month 6
Dependencies (3)
Dev Dependencies (15)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |