/get-urls

Get all urls in a string

Primary LanguageJavaScriptMIT LicenseMIT

get-urls Build Status

Get all URLs in a string

The URLs will be normalized.

Install

$ npm install --save get-urls

Usage

const text = 'Lorem ipsum dolor sit amet, //sindresorhus.com consectetuer adipiscing http://yeoman.io elit.';

getUrls(text);
//=> Set {'http://sindresorhus.com', 'http://yeoman.io'}

API

getUrls(text, [options])

Returns a Set of URLs.

text

Type: string

options

Type: Object

See the normalize-url options.

Related

License

MIT © Sindre Sorhus