We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
...)?...
Anchorme Version: 3.0.8
3.0.8
When using anchorme.list() with the following link:
anchorme.list()
www.example.com/(test)?test=test
it will only return the following:
[ { start: 0, end: 30, string: 'https://www.example.com/(test)', isURL: true, protocol: 'https://', port: undefined, ipv4: undefined, ipv6: undefined, host: 'www.example.com', confirmedByProtocol: true, path: '/(test)', query: undefined, fragment: undefined, reason: 'url' } ]
However, it should actually be:
[ { start: 0, end: 30, string: 'https://www.example.com/(test)?test=test', isURL: true, protocol: 'https://', port: undefined, ipv4: undefined, ipv6: undefined, host: 'www.example.com', confirmedByProtocol: true, path: '/(test)', query: 'test=test', fragment: undefined, reason: 'url' } ]
The issue seems to be the )?, because it works with the following link: https://www.example.com/(test)/?test=test
)?
https://www.example.com/(test)/?test=test
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Anchorme Version:
3.0.8
Description
When using
anchorme.list()
with the following link:www.example.com/(test)?test=test
it will only return the following:
However, it should actually be:
The issue seems to be the
)?
, because it works with the following link:https://www.example.com/(test)/?test=test
The text was updated successfully, but these errors were encountered: