uni-ticket-system/node_modules/licia/isUrl.js
2023-12-05 10:11:10 +08:00

7 lines
153 B
JavaScript

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