is-url-superb
TypeScript icon, indicating that this package has built-in type declarations

6.1.0 • Public • Published

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

/is-url-superb/

    Package Sidebar

    Install

    npm i is-url-superb

    Weekly Downloads

    1,291,432

    Version

    6.1.0

    License

    MIT

    Unpacked Size

    3.25 kB

    Total Files

    5

    Last publish

    Collaborators

    • sindresorhus