UNPKG

213 BJavaScriptView Raw
1'use strict';
2const urlRegex = require('url-regex')({exact: true});
3
4module.exports = url => {
5 if (typeof url !== 'string') {
6 throw new TypeError('Expected a string');
7 }
8
9 return urlRegex.test(url.trim());
10};