url-regex
url-regex copied to clipboard
urls with `@` followed by `.` and number are parsed incorrectly
console.log("https://test.com/@foo.bar1baz".match(require('url-regex')({strict:true})))`
[ 'https://test.com/@foo.bar' ]
url-regex-safe handles this correctly