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
In intellij there is a Window object which has the build in methods atob and btoa. Usage is like this.
> {% client.log(Window.atob(response.body)) %}
In httpYac (tested in V6.16.4) we get the error Window is not defined (ReferenceError: Window is not defined - Object.userJS
Window is not defined (ReferenceError: Window is not defined - Object.userJS
The text was updated successfully, but these errors were encountered:
atob is accessible in global scope (just write atob) I'll check if I can find a specification for the window object at Intellij, and if I can mock it.
atob
https://www.jetbrains.com/help/idea/javascript-api-supported-by-http-client.html#btoa-and-atob Only atob and btoa are available.
Sorry, something went wrong.
No branches or pull requests
In intellij there is a Window object which has the build in methods atob and btoa.
Usage is like this.
In httpYac (tested in V6.16.4) we get the error
Window is not defined (ReferenceError: Window is not defined - Object.userJS
The text was updated successfully, but these errors were encountered: