linkifyjs
linkifyjs copied to clipboard
`example.com?foo=bar` detected as `http://example.com` instead of `http://example.com/?foo=bar`
Hi,
// +-----------------------------+--------------------+
// | Expected | Actual |
import { find } from 'linkifyjs'; // +-----------------------------+--------------------+
console.log(find('example.com/?foo=bar')[0].href); // | http://example.com/?foo=bar | Same |
console.log(find('example.com?foo=bar')[0].href); // | http://example.com/?foo=bar | http://example.com |
// +-----------------------------+--------------------+
Thanks