Skip to content

qurius-inc/is-url-superb

 
 

Repository files navigation

is-url-superb

Check if a string is a URL

Install

$ npm install is-url-superb

Usage

import isUrl from 'is-url-superb';

isUrl('https://sindresorhus.com');
//=> true

isUrl('unicorn');
//=> false

API

isUrl(string, options?)

options

Type: object

lenient

Type: boolean
Default: false

Allow URLs without a protocol.

import isUrl from 'is-url-superb';

isUrl('example.com');
//=> false

isUrl('example.com', {lenient: true});
//=> true

Related

  • is - Type check values

Packages

No packages published

Languages

  • JavaScript 84.0%
  • TypeScript 16.0%