uni-ticket-system/node_modules/licia/isUrl.js

7 lines
153 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(val) {
return regUrl.test(val);
};
var regUrl = /^(?:\w+:)?\/\/([^\s.]+\.\S{2}|localhost[:?\d]*)\S*$/;
module.exports = exports;