UNPKG

url-domain-name

Version:
15 lines (10 loc) 179 B
const url = require('url'); const from = (link) => { if (!link) { throw new Error('Invalid URL'); } return url.parse(link).hostname; }; module.exports = { from };