UNPKG

148 BJavaScriptView Raw
1const regex = require('./regex');
2
3const url = () => regex(/^(https?|ftp):\/\/(-\.)?([^\s/?.#]+\.?)+(\/[^\s]*)?$/iu, 'url');
4
5module.exports = url;