get-urls-host

1.0.0 • Public • Published

get-urls-host

Gets all the URLs from some text that are of a particular host.

Example

const getUrlsHost = require('get-urls-host')

let urls

urls = getUrlsHost('Hello https://chilts.org', 'chilts.org')
console.log(urls)
// -> [ 'https://chilts.org' ]

urls = getUrlsHost('Hello https://chilts.org', 'example.com')
console.log(urls)
// -> [ ]

This module doesn't do much - the hard part is done by https://www.npmjs.com/package/get-urls

Author

Andrew Chilton.

License

ISC.

Package Sidebar

Install

npm i get-urls-host

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • chilts