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
fetch-ax 1.0.10 version
Not a bug, but likely needs to be fixed
when body type is JSON, typeof data === 'string' is true, but I think it would be better if there was explicit code to check if it's a JSON type.
typeof data === 'string'
typeof data === 'string' || data instanceof ReadableStream || data instanceof Blob || data instanceof ArrayBuffer || data instanceof FormData || data instanceof URLSearchParams || isArrayBufferView(data)
No response
The text was updated successfully, but these errors were encountered:
gahyuun
Successfully merging a pull request may close this issue.
Environment
fetch-ax 1.0.10 version
Reproduction
Not a bug, but likely needs to be fixed
Describe the bug
when body type is JSON,
typeof data === 'string'
is true, but I think it would be better if there was explicit code to check if it's a JSON type.Additional context
No response
Logs
No response
The text was updated successfully, but these errors were encountered: