get-urls-to-array
v1.0.0
Published
Get all URLs in a string to Array
Downloads
17
Maintainers
Readme
get-urls
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
- get-urls-cli - CLI for this module
- linkify-urls - Linkify URLs in text
- url-regex - Regular expression for matching URLs
License
MIT © Sindre Sorhus