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
let data = await r2('https://bibliotheques-specialisees.paris.fr/ark:/73873/pf0000855431/0001/v0001.simple.selectedTab=otherdocs').text; console.log(data);
outputs nothing because the : is misinterpreted as a port marker, when it's not a port, but
:
let data = await r2('https://bibliotheques-specialisees.paris.fr/ark\\:/73873/pf0000855431/0001/v0001.simple.selectedTab=otherdocs').text; console.log(data);
works.
Furthermore the Promise resolves correctly but with an empty .text, thus leaving us without a way to handle it.
Promise
.text
The text was updated successfully, but these errors were encountered:
No branches or pull requests
outputs nothing because the
:
is misinterpreted as a port marker, when it's not a port, butworks.
Furthermore the
Promise
resolves correctly but with an empty.text
, thus leaving us without a way to handle it.The text was updated successfully, but these errors were encountered: