1.0.0 • Published 7 years ago

get-urls-to-array v1.0.0

Weekly downloads
39
License
MIT
Repository
github
Last release
7 years ago

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