UNPKG

214 BJavaScriptView Raw
1'use strict';
2const URL = require('url').URL;
3
4function isValidURL(val) {
5 try {
6 new URL(val);
7 return true;
8 } catch (_) {
9 return false;
10 }
11}
12
13module.exports = {
14 isValidURL,
15};