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
Use Case: A snippet of javascript code is used to send requests to 2 URLs: http://proxied.org/query and http://origin-server.org/query
Currently, the application can check if a URL will be proxied in the following way:
_isURLAccelerated: { value: function (url) { return !!XMLHttpRequest.configuration.getTransportUrl(url); } }
A simpler and more understandable API would be to have a boolean such as one of the following examples:
XMLHttpRequest.isURLProxied(url) XMLHttpRequest.configuration.isURLProxied(url) XMLHttpRequest.isURLAccelerated(url) XMLHttpRequest.configuration.isURLAccelerated(url)
The text was updated successfully, but these errors were encountered:
See #40 (comment)
Sorry, something went wrong.
No branches or pull requests
Use Case: A snippet of javascript code is used to send requests to 2 URLs: http://proxied.org/query and http://origin-server.org/query
Currently, the application can check if a URL will be proxied in the following way:
A simpler and more understandable API would be to have a boolean such as one of the following examples:
The text was updated successfully, but these errors were encountered: