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