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
Package: "xcase": "^2.0.1"
"xcase": "^2.0.1"
Repro
camelizeKeys({ Key: 'value' })
Observe result: {Key: 'value'}
{Key: 'value'}
Expected: {key: 'value'}
{key: 'value'}
This behavior appears to originate here:
xcase/es5/index.js
Line 38 in 8af0a2e
isUpper(firstChar) causes the method to return without modifying the key and
isUpper(firstChar)
Line 43 in 8af0a2e
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Package:
"xcase": "^2.0.1"
Repro
Observe result:
{Key: 'value'}
Expected:
{key: 'value'}
This behavior appears to originate here:
xcase/es5/index.js
Line 38 in 8af0a2e
isUpper(firstChar)
causes the method to return without modifying the key andxcase/es5/index.js
Line 43 in 8af0a2e
The text was updated successfully, but these errors were encountered: