11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
'use strict';
|
|
var urlRegex = require('url-regex')({exact: true});
|
|
|
|
module.exports = function (url) {
|
|
if (typeof url !== 'string') {
|
|
throw new TypeError('Expected a string');
|
|
}
|
|
|
|
return urlRegex.test(url.trim());
|
|
};
|